Checking core structure...
compile_project:10: no matches found: *.in
rm -f poof-core.jar `find . -name \*.class`
(cd src; javac -encoding UTF-8 `find . -name \*.java`)
(cd src; jar cf ../poof-core.jar `find . -name \*.class -o -name \*.java`)
Checking manager interface structure...
rm -f poof-textui.jar `find . -name \*.class`
(cd src; javac -encoding UTF-8 -cp /usr/share/java/po-uilib.jar:/usr/share/java/poof-support.jar:../../poof-core/poof-core.jar `find . -name \*.java`)
./poof/textui/user/CreateUser.java:14: error: cannot find symbol
import poof.AcessDeniedException;
           ^
  symbol:   class AcessDeniedException
  location: package poof
./poof/textui/user/CreateUser.java:15: error: cannot find symbol
import poof.UserExistsException;
           ^
  symbol:   class UserExistsException
  location: package poof
./poof/textui/user/CreateUser.java:34: error: cannot find symbol
			Directory mainDir = _receiver.setMainDir(setDirname("/home/" + username));
			                                         ^
  symbol:   method setDirname(String)
  location: class CreateUser
./poof/textui/user/CreateUser.java:36: error: cannot find symbol
		}catch (AcessDeniedException e){
		        ^
  symbol:   class AcessDeniedException
  location: class CreateUser
./poof/textui/user/CreateUser.java:37: error: cannot find symbol
			throw new AcessDeniedException(e.getMessage());
			          ^
  symbol:   class AcessDeniedException
  location: class CreateUser
./poof/textui/user/CreateUser.java:38: error: cannot find symbol
		}catch (UserExistsException e){
		        ^
  symbol:   class UserExistsException
  location: class CreateUser
./poof/textui/user/CreateUser.java:39: error: cannot find symbol
			throw new UserExistsException(e.getMessage());
			          ^
  symbol:   class UserExistsException
  location: class CreateUser
./poof/textui/main/MenuOpenShell.java:31: error: cannot find symbol
		poof.textui.shell.MenuBuilder.menuFor(FileSystem);
		                                      ^
  symbol:   variable FileSystem
  location: class MenuOpenShell
./poof/textui/main/Open.java:35: error: cannot find symbol
			BufferedReader out = new BufferedReader(new ImputStreamReader(new FileInputStream(fileName), "UTF8"));
			                                            ^
  symbol:   class ImputStreamReader
  location: class Open
./poof/textui/main/Open.java:40: error: cannot find symbol
					User user = _receiver.createUser(data[1], data[2], data[3]);
					^
  symbol:   class User
  location: class Open
./poof/textui/main/Open.java:40: error: method createUser in class FileSystem cannot be applied to given types;
					User user = _receiver.createUser(data[1], data[2], data[3]);
					                     ^
  required: String,String,Directory
  found: String,String,String
  reason: actual argument String cannot be converted to Directory by method invocation conversion
./poof/textui/main/Open.java:42: error: cannot find symbol
					DIRECTORY dir = _receiver.createDir(data[1], data[2],data[3]);
					^
  symbol:   class DIRECTORY
  location: class Open
./poof/textui/main/Open.java:42: error: method createDir in class FileSystem cannot be applied to given types;
					DIRECTORY dir = _receiver.createDir(data[1], data[2],data[3]);
					                         ^
  required: String,String,Boolean
  found: String,String,String
  reason: actual argument String cannot be converted to Boolean by method invocation conversion
./poof/textui/main/Open.java:44: error: cannot find symbol
					FILE file = _receiver.createFile(data[1], data[2], data[3], data[4]);
					^
  symbol:   class FILE
  location: class Open
./poof/textui/main/Open.java:44: error: method createFile in class FileSystem cannot be applied to given types;
					FILE file = _receiver.createFile(data[1], data[2], data[3], data[4]);
					                     ^
  required: String,String,Boolean,String,String
  found: String,String,String,String
  reason: actual and formal argument lists differ in length
./poof/textui/main/Open.java:49: error: cannot find symbol
		catch(FileNotFoundException e) {IO.println(Message.fileNotFound(fileName));}
		      ^
  symbol:   class FileNotFoundException
  location: class Open
./poof/textui/main/MenuOpenUserManagement.java:30: error: cannot find symbol
		poof.textui.user.MenuBuilder.menuFor(FileSystem);
		                                     ^
  symbol:   variable FileSystem
  location: class MenuOpenUserManagement
./poof/textui/main/New.java:34: error: cannot find symbol
			BufferedWriter out = new BufferedWriter(new OutputStreamWritter(new FileOutputStream(fileName), "UTF8"));
			^
  symbol:   class BufferedWriter
  location: class New
./poof/textui/main/New.java:34: error: cannot find symbol
			BufferedWriter out = new BufferedWriter(new OutputStreamWritter(new FileOutputStream(fileName), "UTF8"));
			                         ^
  symbol:   class BufferedWriter
  location: class New
./poof/textui/main/New.java:34: error: cannot find symbol
			BufferedWriter out = new BufferedWriter(new OutputStreamWritter(new FileOutputStream(fileName), "UTF8"));
			                                            ^
  symbol:   class OutputStreamWritter
  location: class New
./poof/textui/main/New.java:34: error: cannot find symbol
			BufferedWriter out = new BufferedWriter(new OutputStreamWritter(new FileOutputStream(fileName), "UTF8"));
			                                                                    ^
  symbol:   class FileOutputStream
  location: class New
./poof/textui/main/Save.java:33: error: cannot find symbol
		BufferedWriter out = new BufferedWriter(new OutputStreamWritter(new FileOutputStream(fileName), "UTF8"));
		^
  symbol:   class BufferedWriter
  location: class Save
./poof/textui/main/Save.java:33: error: cannot find symbol
		BufferedWriter out = new BufferedWriter(new OutputStreamWritter(new FileOutputStream(fileName), "UTF8"));
		                         ^
  symbol:   class BufferedWriter
  location: class Save
./poof/textui/main/Save.java:33: error: cannot find symbol
		BufferedWriter out = new BufferedWriter(new OutputStreamWritter(new FileOutputStream(fileName), "UTF8"));
		                                            ^
  symbol:   class OutputStreamWritter
  location: class Save
./poof/textui/main/Save.java:33: error: cannot find symbol
		BufferedWriter out = new BufferedWriter(new OutputStreamWritter(new FileOutputStream(fileName), "UTF8"));
		                                                                    ^
  symbol:   class FileOutputStream
  location: class Save
./poof/textui/Shell.java:33: error: cannot find symbol
					User user = myFileSystem.CreateUser(data[1], data[2], data[3]);
					^
  symbol:   class User
  location: class Shell
./poof/textui/Shell.java:33: error: cannot find symbol
					User user = myFileSystem.CreateUser(data[1], data[2], data[3]);
					                        ^
  symbol:   method CreateUser(String,String,String)
  location: variable myFileSystem of type FileSystem
./poof/textui/Shell.java:35: error: cannot find symbol
					Directory dir = myFileSystem.CreateDir(data[1], data[2], data[3]);
					^
  symbol:   class Directory
  location: class Shell
./poof/textui/Shell.java:35: error: cannot find symbol
					Directory dir = myFileSystem.CreateDir(data[1], data[2], data[3]);
					                            ^
  symbol:   method CreateDir(String,String,String)
  location: variable myFileSystem of type FileSystem
./poof/textui/Shell.java:37: error: cannot find symbol
					File file = myFileSystem.CreateFile(data[1], data[2], data[3], data[4], (data[4]).length());
					^
  symbol:   class File
  location: class Shell
./poof/textui/Shell.java:37: error: cannot find symbol
					File file = myFileSystem.CreateFile(data[1], data[2], data[3], data[4], (data[4]).length());
					                        ^
  symbol:   method CreateFile(String,String,String,String,int)
  location: variable myFileSystem of type FileSystem
31 errors
make: *** [all] Error 1