option to run ant target before building artifact

This commit is contained in:
nik
2009-11-10 10:50:30 +03:00
parent 27106ff28a
commit 1a4f566e4d
10 changed files with 112 additions and 23 deletions
@@ -26,6 +26,9 @@ import org.jetbrains.annotations.NotNull;
*/
public abstract class ArtifactProperties<S> implements PersistentStateComponent<S> {
public void onBuildStarted(@NotNull Artifact artifact, @NotNull CompileContext compileContext) {
}
public void onBuildFinished(@NotNull Artifact artifact, @NotNull CompileContext compileContext) {
}
@@ -22,7 +22,8 @@ import com.intellij.openapi.options.UnnamedConfigurable;
*/
public abstract class ArtifactPropertiesEditor implements UnnamedConfigurable {
protected static final String VALIDATION_TAB = "Validation";
protected static final String POSTPROCESSING_TAB = "Post-processing";
protected static final String POST_PROCESSING_TAB = "Post-processing";
protected static final String PRE_PROCESSING_TAB = "Pre-processing";
public abstract String getTabName();