~ubuntu-branches/ubuntu/jaunty/aspectj/jaunty

« back to all changes in this revision

Viewing changes to org.aspectj/modules/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/CompilationResultDestinationManager.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch, Michael Koch, Thomas Girard, Mark Howard
  • Date: 2008-01-05 23:31:47 UTC
  • mfrom: (1.1.2 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080105233147-r425rd8nymruj6fk
Tags: 1.5.4-1
[ Michael Koch ]
* New upstream version. Closes: #459363
* Updated Standards-Version to 3.7.3.
* Added myself to Uploaders.

[ Thomas Girard ]
* Add Homepage: control field, and convert XS-Vcs-* to Vcs-*.

[ Mark Howard ]
* debian/watch: added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
package org.aspectj.ajdt.internal.compiler;
13
13
 
14
14
import java.io.File;
 
15
import java.util.List;
15
16
 
16
17
/**
17
18
 * acts as a bridge from ajde's OutputLocationManager interface to the compiler internals
43
44
         */
44
45
        File getOutputLocationForResource(File resource);
45
46
        
 
47
        /**
 
48
         * Return a list of all output locations handled by this OutputLocationManager
 
49
         */
 
50
        List /*File*/ getAllOutputLocations();
 
51
        
 
52
        /**
 
53
         * Return the default output location (for example, <my_project>/bin). This is
 
54
         * where classes which are on the inpath will be placed.
 
55
         */
 
56
        File getDefaultOutputLocation();
 
57
        
46
58
}