import org.aspectj.ajde.ui.UserPreferencesAdapter;
/**
- * IOutputLocationManager which returns the same output location for
- * all files and resources.
+ * IOutputLocationManager which returns the same output location for all files and resources.
*/
public class BrowserOutputLocationManager implements IOutputLocationManager {
private UserPreferencesAdapter preferencesAdapter;
- public BrowserOutputLocationManager(
- UserPreferencesAdapter preferencesAdapter) {
+ public BrowserOutputLocationManager(UserPreferencesAdapter preferencesAdapter) {
this.preferencesAdapter = preferencesAdapter;
}
}
private String getCommonOutputDir() {
- String outputPath = preferencesAdapter.getProjectPreference(
- PreferenceStoreConstants.BUILD_OUTPUTPATH);
+ String outputPath = preferencesAdapter.getProjectPreference(PreferenceStoreConstants.BUILD_OUTPUTPATH);
if (outputPath == null) {
return ".";
}
return null;
}
+ public void reportClassFileWrite(String outputfile) {
+ }
+
}