Checking core structure...
compile_project:10: no matches found: *.in
rm -f edt-core.jar `find . -name \*.class`
(cd src; javac -encoding UTF-8 `find . -name \*.java`)
./edt/EditorAPP.java:7: error: class EditorApp is public, should be declared in a file named EditorApp.java
public class EditorApp 
       ^
./edt/Document.java:22: error: cannot find symbol
    public void setParagraphName(string UniqueId, Section s, int id)
                                 ^
  symbol:   class string
  location: class Document
./edt/Document.java:27: error: cannot find symbol
    public void setSectionName(string UniqueId, Section s)
                               ^
  symbol:   class string
  location: class Document
./edt/EditorAPP.java:44: error: missing method body, or declare abstract
    public void parser(String filename) throws IOException;
                ^
./edt/EditorAPP.java:48: error: cannot find symbol
		BufferedReader reader = new BufferedReader(new FileReader(filename));
		                                                          ^
  symbol:   variable filename
  location: class EditorApp
./edt/EditorAPP.java:49: error: cannot find symbol
		d.changeTitle(reader.readLine());
		 ^
  symbol:   method changeTitle(String)
  location: variable d of type Document
./edt/EditorAPP.java:54: error: method addAuthor in class Document cannot be applied to given types;
			d.addAuthor(string[0],string[1]);
			 ^
  required: Author
  found: String,String
  reason: actual and formal argument lists differ in length
./edt/EditorAPP.java:63: error: cannot find symbol
		 			_current = d.insertSection(-1,linhaSeparada[2]);
		 			            ^
  symbol:   method insertSection(int,String)
  location: variable d of type Document
./edt/EditorAPP.java:66: error: cannot find symbol
		 				_current.setUniqueid(linhaSeparada[1]);
		 				        ^
  symbol:   method setUniqueid(String)
  location: variable _current of type Section
./edt/EditorAPP.java:67: error: cannot find symbol
						d.insertElement(_current);
						 ^
  symbol:   method insertElement(Section)
  location: variable d of type Document
./edt/EditorAPP.java:72: error: cannot find symbol
		 	_current.insertParagraph(-1,linhaSeparada[1]);
		 	        ^
  symbol:   method insertParagraph(int,String)
  location: variable _current of type Section
./edt/EditorAPP.java:79: error: cannot find symbol
			throw new DocIOException();
			          ^
  symbol:   class DocIOException
  location: class EditorApp
./edt/Section.java:44: error: cannot find symbol
        String output = getHeadline();
                        ^
  symbol:   method getHeadline()
  location: class Section
./edt/Section.java:89: error: incompatible types: unexpected return value
		return d.getSubsections().remove(index);
		                                ^
14 errors
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1