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/DocManager.java:121: error: cannot find symbol
		void registerFromFields(String[] fields) throws UnknownDataException {
		                                                ^
  symbol:   class UnknownDataException
  location: class DocManager.Import
./edt/DocManager.java:157: error: cannot find symbol
		void registerParagraph(String[] fields) throws UnknownDataException {
		                                               ^
  symbol:   class UnknownDataException
  location: class DocManager.Import
./edt/DocManager.java:171: error: cannot find symbol
		void registerSection(String[] fields) throws UnknownDataException{
		                                             ^
  symbol:   class UnknownDataException
  location: class DocManager.Import
./edt/Section.java:68: error: cannot find symbol
		counter += auxArray.length();
		                   ^
  symbol:   method length()
  location: variable auxArray of type byte[]
./edt/Section.java:70: error: cannot find symbol
		if(sec.GetParagraphs().size() != 0){
		   ^
  symbol:   variable sec
  location: class Section
./edt/Section.java:71: error: cannot find symbol
			for(Paragraph p : sec.GetParagraphs()){
			                  ^
  symbol:   variable sec
  location: class Section
./edt/Section.java:74: error: cannot find symbol
				counter += auxArray.length();
				                   ^
  symbol:   method length()
  location: variable auxArray of type byte[]
./edt/Section.java:79: error: incompatible types: Object cannot be converted to Section
			for(Section sec : this.GetSubSections()){
			                                     ^
./edt/Document.java:46: error: incompatible types: Object cannot be converted to Section
		for(Section sec : this.GetSubSections()){
		                                     ^
./edt/Document.java:104: error: cannot find symbol
			if(txtE.GetUniqueID() != null){
			       ^
  symbol:   method GetUniqueID()
  location: variable txtE of type TextElement
./edt/DocManager.java:54: error: cannot find symbol
				FileOutputStream fileOut = FileOutputStream(path);
				                           ^
  symbol:   method FileOutputStream(String)
  location: class DocManager
./edt/DocManager.java:71: error: incompatible types: Object cannot be converted to Author
		for(Author ath : authors){
		                 ^
./edt/DocManager.java:81: error: incompatible types: Object[] cannot be converted to Section[]
		Section[] subSections = _doc.GetSubSections().toArray();
		                                                     ^
./edt/DocManager.java:113: error: cannot find symbol
				catch (UnknownDataException e) {
				       ^
  symbol:   class UnknownDataException
  location: class DocManager.Import
./edt/DocManager.java:147: error: cannot find symbol
			else if (fields.size()==1) { 
			               ^
  symbol:   method size()
  location: variable fields of type String[]
./edt/DocManager.java:154: error: cannot find symbol
				throw new UnknownDataException();
				          ^
  symbol:   class UnknownDataException
  location: class DocManager.Import
./edt/DocManager.java:167: error: cannot find symbol
			throw new UnknownDataException();
			          ^
  symbol:   class UnknownDataException
  location: class DocManager.Import
./edt/DocManager.java:181: error: cannot find symbol
			throw new UnknownDataException();
			          ^
  symbol:   class UnknownDataException
  location: class DocManager.Import
Note: ./edt/Document.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
18 errors
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1