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

« back to all changes in this revision

Viewing changes to org.aspectj/modules/org.aspectj.matcher/src/org/aspectj/weaver/GeneratedReferenceTypeDelegate.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2011-03-15 23:54:31 UTC
  • mfrom: (1.1.5 upstream) (7.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110315235431-7d8cs3gvs4tnqx7t
Tags: 1.6.11+dfsg-1
* 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:
11
11
 
12
12
import java.util.Collection;
13
13
 
 
14
import org.aspectj.weaver.patterns.Declare;
14
15
import org.aspectj.weaver.patterns.PerClause;
15
16
 
16
17
/**
115
116
                throw new UnsupportedOperationException("Not supported for GeneratedReferenceTypeDelegate");
116
117
        }
117
118
 
118
 
        public Collection getDeclares() {
119
 
                throw new UnsupportedOperationException("Not supported for GeneratedReferenceTypeDelegate");
120
 
        }
121
 
 
122
 
        public Collection getTypeMungers() {
123
 
                throw new UnsupportedOperationException("Not supported for GeneratedReferenceTypeDelegate");
124
 
        }
125
 
 
126
 
        public Collection getPrivilegedAccesses() {
 
119
        public Collection<Declare> getDeclares() {
 
120
                throw new UnsupportedOperationException("Not supported for GeneratedReferenceTypeDelegate");
 
121
        }
 
122
 
 
123
        public Collection<ConcreteTypeMunger> getTypeMungers() {
 
124
                throw new UnsupportedOperationException("Not supported for GeneratedReferenceTypeDelegate");
 
125
        }
 
126
 
 
127
        public Collection<ResolvedMember> getPrivilegedAccesses() {
127
128
                throw new UnsupportedOperationException("Not supported for GeneratedReferenceTypeDelegate");
128
129
        }
129
130