]> source.dussan.org Git - aspectj.git/commitdiff
258325: fix
authoraclement <aclement>
Wed, 10 Dec 2008 21:37:36 +0000 (21:37 +0000)
committeraclement <aclement>
Wed, 10 Dec 2008 21:37:36 +0000 (21:37 +0000)
ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java

index 7812017ad23053c130fa5b49e90a0a55ad7185e0..b810bb814d7e1b809b15a927eb552779d09a6d28 100644 (file)
@@ -15,11 +15,9 @@ import java.util.ArrayList;
 import java.util.List;
 
 /**
- * Test implementation of IOutputLocationManager. By default returns the
- * same location for both resources and classes, however, setter methods
- * enable the user to specify different location for these. Note that the
- * user is unable to specify different output location for different class
- * files.
+ * Test implementation of IOutputLocationManager. By default returns the same location for both resources and classes, however,
+ * setter methods enable the user to specify different location for these. Note that the user is unable to specify different output
+ * location for different class files.
  */
 public class TestOutputLocationManager implements IOutputLocationManager {
 
@@ -27,7 +25,7 @@ public class TestOutputLocationManager implements IOutputLocationManager {
        private File classOutputLoc;
        private File resourceOutputLoc;
        private List allOutputLocations;
-       
+
        public TestOutputLocationManager(String testProjectPath) {
                this.testProjectOutputPath = testProjectPath + File.separator + "bin";
        }
@@ -41,18 +39,18 @@ public class TestOutputLocationManager implements IOutputLocationManager {
                initLocations();
                return resourceOutputLoc;
        }
-       
+
        // -------------- setter methods useful for testing -------------
        public void setOutputLocForClass(File f) {
                classOutputLoc = f;
        }
-       
+
        public void setOutputLocForResource(File f) {
                resourceOutputLoc = f;
        }
 
        public List getAllOutputLocations() {
-               if(allOutputLocations == null) {
+               if (allOutputLocations == null) {
                        allOutputLocations = new ArrayList();
                        initLocations();
                        allOutputLocations.add(classOutputLoc);
@@ -67,7 +65,7 @@ public class TestOutputLocationManager implements IOutputLocationManager {
                initLocations();
                return classOutputLoc;
        }
-       
+
        private void initLocations() {
                if (classOutputLoc == null) {
                        classOutputLoc = new File(testProjectOutputPath);
@@ -80,6 +78,8 @@ public class TestOutputLocationManager implements IOutputLocationManager {
        public String getSourceFolderForFile(File sourceFile) {
                return null;
        }
-       
+
+       public void reportClassFileWrite(String outputfile) {
+       }
 
 }