cleanup and javadoc

This commit is contained in:
nik
2012-02-07 15:02:47 +04:00
parent 4e7c56593e
commit 2103c2098a
3 changed files with 5 additions and 5 deletions
@@ -1,14 +1,13 @@
package org.jetbrains.jps.incremental;
/**
* @see ModuleLevelBuilder
* @see ProjectLevelBuilder
*
* @author nik
*/
public abstract class Builder {
public abstract String getName();
public abstract String getDescription();
public static enum ExitCode {
OK, ABORT, ADDITIONAL_PASS_REQUIRED
}
}
@@ -1,6 +1,7 @@
package org.jetbrains.jps.incremental;
/**
* @see ProjectLevelBuilderService
* @author nik
*/
public abstract class ProjectLevelBuilder extends Builder {
@@ -120,7 +120,7 @@ public class IncArtifactBuilder extends ProjectLevelBuilder {
}
context.processMessage(UptoDateFilesSavedEvent.INSTANCE);
}
catch (Exception e) {
catch (IOException e) {
throw new ProjectBuildException(e);
}
}