~ubuntu-branches/ubuntu/wily/aspectj/wily-proposed

« back to all changes in this revision

Viewing changes to org.aspectj/modules/asm/src/org/aspectj/asm/IRelationship.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2011-03-15 23:54:31 UTC
  • mfrom: (1.2.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20110315235431-iq2gxbsx08kpwuiw
* New upstream release.
* Updated Standards-Version to 3.9.1 (no changes needed).
* Fix local Javadoc links:
  - d/patches/07_javadoc_links.diff: Use locally installed
   javadoc packages and hyperlink with them.
  - d/control: Add B-D on default-java-doc and libasm3-java-doc.
* d/control: Drop B-D on itself (our new bootstrap infrastructure doesn't need
  that anymore).
* Split packages into :
  - aspectj: only contains CLI tools.
  - libaspectj-java: JAR librairies for /usr/share/java.
  - libaspectj-java-doc: 4 API's Javadoc.
  - aspectj-doc: Programming Guides and SDK Documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
import java.util.List;
17
17
 
18
18
/**
 
19
 * A relationship has a name (e.g. 'declare warning') and some set of affected targets.
 
20
 * 
19
21
 * @author Mik Kersten
 
22
 * @author Andy Clement
20
23
 */
21
24
public interface IRelationship extends Serializable {
22
25
 
23
26
        public String getName();
24
27
 
25
 
        public List/* String */getTargets();
 
28
        public Kind getKind();
 
29
 
 
30
        public void addTarget(String handle);
 
31
 
 
32
        public List<String> getTargets();
26
33
 
27
34
        public String getSourceHandle();
28
35
 
29
 
        public void addTarget(String handle);
30
 
 
31
 
        public Kind getKind();
32
 
 
33
36
        public boolean hasRuntimeTest();
34
37
 
35
38
        public boolean isAffects();