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/Section.java:52: error: cannot find symbol
		this.setTittle(tittle);
		    ^
  symbol: method setTittle(String)
./edt/Editor.java:75: error: method insertSection in class Section cannot be applied to given types;
			_document.insertSection(-1, _curSection);
			         ^
  required: Section
  found: int,Section
  reason: actual and formal argument lists differ in length
./edt/Editor.java:77: error: cannot find symbol
			    _document.Content(content[1], _curSection);
			             ^
  symbol:   method Content(String,Section)
  location: variable _document of type Document
./edt/Editor.java:82: error: method insertParagraph in class Section cannot be applied to given types;
			_curSection.insertParagraph(-1, par);
			           ^
  required: Paragraph
  found: int,Paragraph
  reason: actual and formal argument lists differ in length
4 errors
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1