Final Project

This commit is contained in:
2017-04-20 13:08:09 +02:00
parent 5cfade4bba
commit edfcef6438
8 changed files with 9 additions and 22 deletions

View File

@@ -2,9 +2,6 @@ import expression.Expression;
import expression.Tree;
import statement.Handling;
/**
* Created by xawirses on 29/03/17.
*/
public class Main {
public static void main(String[] args) {
Expression e = new Expression();

View File

@@ -5,9 +5,6 @@ import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
/**
* Created by xawirses on 28/02/17.
*/
public class Expression {
private String expression;
private String expressionPrefixe;

View File

@@ -1,8 +1,5 @@
package expression;
/**
* Created by azael on 20/03/17.
*/
public class Node {
private char node;

View File

@@ -1,9 +1,5 @@
package expression;
/**
* Created by xawirses on 28/02/17.
*/
public class Operator {
public static final int nbOperators = 9;

View File

@@ -2,9 +2,6 @@ package expression;
import expression.Expression;
/**
* Created by azael on 20/03/17.
*/
public class Tree {
private Node root;

View File

@@ -2,9 +2,6 @@ package statement;
import expression.Node;
/**
* Created by xawirses on 07/04/17.
*/
public class Handling {
private Node expression;
private World first;

View File

@@ -5,9 +5,6 @@ import expression.Node;
import java.util.ArrayList;
import java.util.Collection;
/**
* Created by xawirses on 29/03/17.
*/
public class World {
private static int worldId = 1;
private String name;