diff options
author | wisberg <wisberg> | 2003-04-30 02:14:57 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-04-30 02:14:57 +0000 |
commit | 79dfdccadb09391f2697c26cc7dc4016e83fdc13 (patch) | |
tree | 18d27c8536841fd82eaa284f583dd84d1eb10692 | |
parent | 8f8628c4484d350a19ee797baea154f6fa722768 (diff) | |
download | aspectj-79dfdccadb09391f2697c26cc7dc4016e83fdc13.tar.gz aspectj-79dfdccadb09391f2697c26cc7dc4016e83fdc13.zip |
added flag for incremental mode
-rw-r--r-- | ajde/src/org/aspectj/ajde/BuildOptionsAdapter.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ajde/src/org/aspectj/ajde/BuildOptionsAdapter.java b/ajde/src/org/aspectj/ajde/BuildOptionsAdapter.java index 7e89a55fa..ea8905b71 100644 --- a/ajde/src/org/aspectj/ajde/BuildOptionsAdapter.java +++ b/ajde/src/org/aspectj/ajde/BuildOptionsAdapter.java @@ -80,7 +80,14 @@ public interface BuildOptionsAdapter { * @deprecated Use getComplianceLevel instead */ public boolean getSourceOnePointFourMode(); - + + + /** + * Run compiles incrementally. + * @since AspectJ 1.1 + */ + public boolean getIncrementalMode(); + /** * Be extra-lenient in interpreting the Java specification. The default is "false", * i.e. "regular" mode. |