Checking core structure...
compile_project:10: no matches found: *.in
rm -f rest-core.jar `find . -name \*.class`
(cd src; javac -encoding UTF-8 `find . -name \*.java`)
./rest/Parser.java:1: error: package ist.po.ui does not exist (cannot be used in the core project)
import ist.po.ui.Command;
                ^
./rest/Parser.java:2: error: package ist.po.ui does not exist (cannot be used in the core project)
import ist.po.ui.DialogException;
                ^
./rest/Parser.java:16: error: cannot find symbol
public void readData(BufferedReader in)throws Exception {
                     ^
  symbol:   class BufferedReader
  location: class Parser
./rest/Parser.java:23: error: cannot find symbol
		   _outlet.registerClient(buff[1], buff[2], buff[0]);
		   ^
  symbol:   variable _outlet
  location: class Parser
./rest/Parser.java:26: error: cannot find symbol
			_outlet.registerClient(buff[1], buff[2], "VEGETARIAN");
			^
  symbol:   variable _outlet
  location: class Parser
./rest/Parser.java:29: error: cannot find symbol
			_outlet.registerRestaurant(buff[1], buff[2]);
			^
  symbol:   variable _outlet
  location: class Parser
./rest/Parser.java:32: error: cannot find symbol
			_outlet.registerSimpleFood(buff[0], buff[1], Integer.parseInt(buff[2]));
			^
  symbol:   variable _outlet
  location: class Parser
./rest/Parser.java:35: error: cannot find symbol
			_outlet.registerSimpleFood(buff[0], buff[1], Integer.parseInt(buff[2]));
			^
  symbol:   variable _outlet
  location: class Parser
./rest/Parser.java:38: error: cannot find symbol
			_outlet.registerSimpleFood(buff[0], buff[1], Integer.parseInt(buff[2]));
			^
  symbol:   variable _outlet
  location: class Parser
./rest/Parser.java:46: error: cannot find symbol
			   f[i-2] = _outlet.getSimpleFood(food[0]);
			            ^
  symbol:   variable _outlet
  location: class Parser
./rest/Parser.java:48: error: cannot find symbol
			   _outlet.registerAgFood(buff[1], f, quants);
			   ^
  symbol:   variable _outlet
  location: class Parser
./rest/Parser.java:52: error: cannot find symbol
			Restaurant r = _outlet.getRestaurant(buff[1]);
			               ^
  symbol:   variable _outlet
  location: class Parser
./rest/Parser.java:53: error: cannot find symbol
			_outlet.registerSpecial(r, buff[2], Integer.parseInt(buff[3]),  Integer.parseInt(buff[4]),  Integer.parseInt(buff[5]));
			^
  symbol:   variable _outlet
  location: class Parser
13 errors
make: *** [all] Error 1