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/Document.java:38: error: cannot find symbol
	public ArrayList<Section> getSections(){
	       ^
  symbol:   class ArrayList
  location: class Document
./edt/TextElement.java:6: error: TextElement is not abstract and does not override abstract method showTextElement(int) in TextElement
public class TextElement{
       ^
./edt/Section.java:30: error: cannot find symbol
	  _uniqueID = uniqueID;
	  ^
  symbol:   variable _uniqueID
  location: class Section
./edt/Section.java:72: error: cannot find symbol
	    size += p.getContentSize();
	             ^
  symbol:   method getContentSize()
  location: variable p of type Paragraph
./edt/Section.java:93: error: uniqueID has private access in TextElement
	    if(!uniqueID.equals("")) num++;
	        ^
./edt/Section.java:96: error: uniqueID has private access in TextElement
	    if(!uniqueID.equals("")) num++; 
	        ^
./edt/Section.java:97: error: cannot find symbol
	    if(_subsection != null){
	       ^
  symbol:   variable _subsection
  location: class Section
./edt/Document.java:11: error: constructor Section in class Section cannot be applied to given types;
public class Document extends Section implements Serializable{
       ^
  required: String,String
  found: no arguments
  reason: actual and formal argument lists differ in length
./edt/Document.java:39: error: _subsections has private access in Section
	  return _subsections;
	         ^
./edt/Paragraph.java:20: error: cannot find symbol
		_uniqueID = uniqueID;
		^
  symbol:   variable _uniqueID
  location: class Paragraph
10 errors
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1