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/Documento.java:32: error: _curSection has private access in Seccao
		_curSection.getParagrafo().add(local, paragrafo);
		^
./edt/Documento.java:32: error: cannot find symbol
		_curSection.getParagrafo().add(local, paragrafo);
		           ^
  symbol:   method getParagrafo()
  location: variable _curSection of type Seccao
./edt/Parser.java:17: error: cannot find symbol
		System.out.println(doc.getContent());
		                      ^
  symbol:   method getContent()
  location: variable doc of type Documento
./edt/Parser.java:61: error: constructor Seccao in class Seccao cannot be applied to given types;
			_curSeccao = new Seccao(content[2]);
			             ^
  required: no arguments
  found: String
  reason: actual and formal argument lists differ in length
./edt/Parser.java:64: error: cannot find symbol
				_documento.indexElement(content[1], _curSeccao);
				          ^
  symbol:   method indexElement(String,Seccao)
  location: variable _documento of type Documento
./edt/Parser.java:68: error: constructor Paragrafo in class Paragrafo cannot be applied to given types;
			Paragrafo par = new Paragrafo(content[1]);
			                ^
  required: no arguments
  found: String
  reason: actual and formal argument lists differ in length
./edt/Parser.java:69: error: cannot find symbol
			_curSeccao.addParagraph(-1, par);
			          ^
  symbol:   method addParagraph(int,Paragrafo)
  location: variable _curSeccao of type Seccao
7 errors
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1