1 19 package org.netbeans.modules.java.source.engine; 20 21 24 public interface BuildProgress { 25 28 void buildStarted(); 29 30 33 void sourceExpansionStarting(); 34 35 38 void sourceExpansionFinished(); 39 40 43 void setTotalSourceFiles(int count); 44 45 48 void fileParsed(); 49 50 53 void parsingFinished(); 54 55 59 void setTotalTrees(int count); 60 61 64 void treeEntered(); 65 66 69 void enterFinished(); 70 71 74 void setTotalClasses(int count); 75 76 79 void classAttributed(); 80 81 84 void attributionFinished(); 85 86 89 void buildFinished(int errors, int warnings, long elapsedMilliseconds); 90 91 94 void dispose(); 95 } 96 | Popular Tags |