summaryrefslogtreecommitdiffstats
path: root/ajde
diff options
context:
space:
mode:
authormkersten <mkersten>2003-07-22 15:55:45 +0000
committermkersten <mkersten>2003-07-22 15:55:45 +0000
commitac131250d1c86e10053603c3a07445ca147a6978 (patch)
treeac6250d02a64cc7181a1e2e809c0e76a880d35c6 /ajde
parent6b1b7020c5fd4ce453906eb577f9a66ace5f3bd9 (diff)
downloadaspectj-ac131250d1c86e10053603c3a07445ca147a6978.tar.gz
aspectj-ac131250d1c86e10053603c3a07445ca147a6978.zip
Improved name of compilerAdatper private.
Diffstat (limited to 'ajde')
-rw-r--r--ajde/src/org/aspectj/ajde/internal/AspectJBuildManager.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/ajde/src/org/aspectj/ajde/internal/AspectJBuildManager.java b/ajde/src/org/aspectj/ajde/internal/AspectJBuildManager.java
index 9e4513819..5263b21c1 100644
--- a/ajde/src/org/aspectj/ajde/internal/AspectJBuildManager.java
+++ b/ajde/src/org/aspectj/ajde/internal/AspectJBuildManager.java
@@ -27,7 +27,7 @@ import org.aspectj.util.ConfigParser;
*/
public class AspectJBuildManager implements BuildManager {
- private CompilerAdapter compiler = null;
+ private CompilerAdapter compilerAdapter = null;
private TaskListManager compilerMessages = null;
private BuildProgressMonitor progressMonitor = null;
private BuildOptionsAdapter buildOptions = null;
@@ -44,7 +44,7 @@ public class AspectJBuildManager implements BuildManager {
this.compilerMessages = compilerMessages;
this.progressMonitor = progressMonitor;
this.buildOptions = buildOptions;
- this.compiler = new CompilerAdapter();
+ this.compilerAdapter = new CompilerAdapter();
}
public void buildFresh() {
@@ -84,7 +84,7 @@ public class AspectJBuildManager implements BuildManager {
fresh = true;
}
if (fresh) {
- this.compiler.nextBuildFresh();
+ this.compilerAdapter.nextBuildFresh();
}
CompilerThread compilerThread = new CompilerThread();
compilerThread.start();
@@ -92,22 +92,22 @@ public class AspectJBuildManager implements BuildManager {
}
public void abortBuild() {
- if (compiler != null) {
- compiler.requestCompileExit();
+ if (compilerAdapter != null) {
+ compilerAdapter.requestCompileExit();
}
}
public boolean isStructureDirty() {
- if (compiler != null) {
- return compiler.isStructureDirty();
+ if (compilerAdapter != null) {
+ return compilerAdapter.isStructureDirty();
} else {
return false;
}
}
public void setStructureDirty(boolean structureDirty) {
- if (compiler != null) {
- compiler.setStructureDirty(structureDirty);
+ if (compilerAdapter != null) {
+ compilerAdapter.setStructureDirty(structureDirty);
}
}
@@ -161,7 +161,7 @@ public class AspectJBuildManager implements BuildManager {
Ajde.getDefault().logEvent("building with options: "
+ getFormattedOptionsString(buildOptions, Ajde.getDefault().getProjectProperties()));
- succeeded = compiler.compile(configFile, progressMonitor);
+ succeeded = compilerAdapter.compile(configFile, progressMonitor);
long timeEnd = System.currentTimeMillis();
lastCompileTime = (int)(timeEnd - timeStart);