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/FoodSimple.java:3: error: package rest.textui.food does not exist
import rest.textui.food.Message;
                       ^
./rest/Restaurant.java:5: error: package rest.textui.restaurant does not exist
import rest.textui.restaurant.Message;
                             ^
./rest/Outlet.java:17: error: cannot find symbol
	private ArrayList<Client> _clients;
	                  ^
  symbol:   class Client
  location: class Outlet
./rest/Outlet.java:30: error: cannot find symbol
	public Outlet(ArrayList<Restaurant> r, ArrayList<DishOfTheDay> d, ArrayList<Client> c, ArrayList<Food> f){
	                                                                            ^
  symbol:   class Client
  location: class Outlet
./rest/Outlet.java:50: error: cannot find symbol
	public ArrayList<Client> getClients(){
	                 ^
  symbol:   class Client
  location: class Outlet
./rest/Outlet.java:78: error: cannot find symbol
	public void newClient(Client c){
	                      ^
  symbol:   class Client
  location: class Outlet
./rest/FoodCompound.java:5: error: package rest.textui.food does not exist
import rest.textui.food.Message;
                       ^
./rest/TypeClientVegetarian.java:4: error: package rest.textui.clients does not exist
import rest.textui.clients.Message;
                          ^
./rest/TypeClientOmnivorous.java:4: error: package rest.textui.clients does not exist
import rest.textui.clients.Message;
                          ^
./rest/FoodSimple.java:22: error: cannot find symbol
			s = Message.typeFish();
			    ^
  symbol:   variable Message
  location: class FoodSimple
./rest/FoodSimple.java:25: error: cannot find symbol
			s = Message.typeMeat();
			    ^
  symbol:   variable Message
  location: class FoodSimple
./rest/FoodSimple.java:28: error: cannot find symbol
			s = Message.typeVeg();
			    ^
  symbol:   variable Message
  location: class FoodSimple
./rest/Restaurant.java:124: error: cannot find symbol
			s = s + Message.typeVeg();
			        ^
  symbol:   variable Message
  location: class Restaurant
./rest/Restaurant.java:126: error: cannot find symbol
			s = s + Message.typeNoVeg();
			        ^
  symbol:   variable Message
  location: class Restaurant
./rest/Restaurant.java:128: error: cannot find symbol
			s = s + "|" + d.toString() + "|" + Message.typeTrue();
			                                   ^
  symbol:   variable Message
  location: class Restaurant
./rest/Restaurant.java:130: error: cannot find symbol
			s = s + "|" + d.toString() + "|" + Message.typeFalse();
			                                   ^
  symbol:   variable Message
  location: class Restaurant
./rest/Outlet.java:25: error: cannot find symbol
		_clients = new ArrayList<Client>();
		                         ^
  symbol:   class Client
  location: class Outlet
./rest/Outlet.java:109: error: cannot find symbol
						this.newClient(new Client(campos[1], campos[0], new TypeClientVegetarian()));
						                   ^
  symbol:   class Client
  location: class Outlet
./rest/Outlet.java:112: error: cannot find symbol
						this.newClient(new Client(campos[1], campos[0], new TypeClientOmnivorous()));
						                   ^
  symbol:   class Client
  location: class Outlet
./rest/FoodCompound.java:74: error: cannot find symbol
			s = s + Message.typeVeg();
			        ^
  symbol:   variable Message
  location: class FoodCompound
./rest/FoodCompound.java:76: error: cannot find symbol
			s = s + Message.typeNoVeg();
			        ^
  symbol:   variable Message
  location: class FoodCompound
./rest/TypeClientVegetarian.java:11: error: cannot find symbol
		_tipo = Message.clientTypeVegetarian();
		        ^
  symbol:   variable Message
  location: class TypeClientVegetarian
./rest/TypeClientOmnivorous.java:11: error: cannot find symbol
		_tipo = Message.clientTypeOmnivorous();
		        ^
  symbol:   variable Message
  location: class TypeClientOmnivorous
23 errors
make: *** [all] Error 1