Bladeren bron

258325: fix

tags/V1_6_3rc1
aclement 15 jaren geleden
bovenliggende
commit
372420d7b8
1 gewijzigde bestanden met toevoegingen van 11 en 11 verwijderingen
  1. 11
    11
      ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java

+ 11
- 11
ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java Bestand weergeven

@@ -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) {
}

}

Laden…
Annuleren
Opslaan