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/main/MenuOpenShell.java:22: error: no suitable constructor found for Command(String,FileManager,FileManager)
		super(MenuEntry.MENU_SHELL, receiver, receiver /*FIXME: validity argument*/);
		^
    constructor Command.Command(String,FileManager,ValidityPredicate<FileManager>) is not applicable
      (actual argument FileManager cannot be converted to ValidityPredicate<FileManager> by method invocation conversion)
    constructor Command.Command(String,FileManager) is not applicable
      (actual and formal argument lists differ in length)
    constructor Command.Command(boolean,String,FileManager,ValidityPredicate<FileManager>) is not applicable
      (actual and formal argument lists differ in length)
    constructor Command.Command(boolean,String,FileManager) is not applicable
      (actual argument String cannot be converted to boolean by method invocation conversion)
    constructor Command.Command(boolean,String) is not applicable
      (actual and formal argument lists differ in length)
./poof/textui/main/MenuOpenShell.java:28: error: cannot find symbol
		poof.textui.shell.MenuBuilder.menuFor(receiver);
		                                      ^
  symbol:   variable receiver
  location: class MenuOpenShell
./poof/textui/main/Login.java:21: error: no suitable constructor found for Command(String,FileManager,FileManager)
		super(MenuEntry.LOGIN, receiver, receiver /*FIXME: validity argument*/);
		^
    constructor Command.Command(String,FileManager,ValidityPredicate<FileManager>) is not applicable
      (actual argument FileManager cannot be converted to ValidityPredicate<FileManager> by method invocation conversion)
    constructor Command.Command(String,FileManager) is not applicable
      (actual and formal argument lists differ in length)
    constructor Command.Command(boolean,String,FileManager,ValidityPredicate<FileManager>) is not applicable
      (actual and formal argument lists differ in length)
    constructor Command.Command(boolean,String,FileManager) is not applicable
      (actual argument String cannot be converted to boolean by method invocation conversion)
    constructor Command.Command(boolean,String) is not applicable
      (actual and formal argument lists differ in length)
./poof/textui/main/MenuBuilder.java:32: error: cannot find symbol
		menu.open();
		^
  symbol:   variable menu
  location: class MenuBuilder
./poof/textui/main/MenuOpenUserManagement.java:22: error: no suitable constructor found for Command(String,FileManager,FileManager)
		super(MenuEntry.MENU_USER_MGT, receiver, receiver /*FIXME: validity argument*/);
		^
    constructor Command.Command(String,FileManager,ValidityPredicate<FileManager>) is not applicable
      (actual argument FileManager cannot be converted to ValidityPredicate<FileManager> by method invocation conversion)
    constructor Command.Command(String,FileManager) is not applicable
      (actual and formal argument lists differ in length)
    constructor Command.Command(boolean,String,FileManager,ValidityPredicate<FileManager>) is not applicable
      (actual and formal argument lists differ in length)
    constructor Command.Command(boolean,String,FileManager) is not applicable
      (actual argument String cannot be converted to boolean by method invocation conversion)
    constructor Command.Command(boolean,String) is not applicable
      (actual and formal argument lists differ in length)
./poof/textui/main/MenuOpenUserManagement.java:28: error: cannot find symbol
		poof.textui.user.MenuBuilder.menuFor(receiver);
		                                     ^
  symbol:   variable receiver
  location: class MenuOpenUserManagement
./poof/textui/main/Save.java:21: error: no suitable constructor found for Command(String,FileManager,FileManager)
		super(MenuEntry.SAVE, receiver, receiver /*FIXME: validity argument*/);
		^
    constructor Command.Command(String,FileManager,ValidityPredicate<FileManager>) is not applicable
      (actual argument FileManager cannot be converted to ValidityPredicate<FileManager> by method invocation conversion)
    constructor Command.Command(String,FileManager) is not applicable
      (actual and formal argument lists differ in length)
    constructor Command.Command(boolean,String,FileManager,ValidityPredicate<FileManager>) is not applicable
      (actual and formal argument lists differ in length)
    constructor Command.Command(boolean,String,FileManager) is not applicable
      (actual argument String cannot be converted to boolean by method invocation conversion)
    constructor Command.Command(boolean,String) is not applicable
      (actual and formal argument lists differ in length)
./poof/textui/shell/ShowFileData.java:21: error: cannot find symbol
		super(MenuEntry.CAT, FileManager);
		                     ^
  symbol:   variable FileManager
  location: class ShowFileData
8 errors
make: *** [all] Error 1