~ubuntu-branches/ubuntu/trusty/aspectj/trusty

« back to all changes in this revision

Viewing changes to org.aspectj/modules/org.aspectj.matcher/src/org/aspectj/weaver/BoundedReferenceTypeDelegate.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:
6
6
import java.util.Collection;
7
7
import java.util.Collections;
8
8
 
 
9
import org.aspectj.weaver.patterns.Declare;
9
10
import org.aspectj.weaver.patterns.PerClause;
10
11
 
11
12
class BoundedReferenceTypeDelegate extends AbstractReferenceTypeDelegate {
102
103
                return resolvedTypeX.getPerClause();
103
104
        }
104
105
 
105
 
        public Collection getDeclares() {
 
106
        public Collection<Declare> getDeclares() {
106
107
                return resolvedTypeX.getDeclares();
107
108
        }
108
109
 
109
 
        public Collection getTypeMungers() {
 
110
        public Collection<ConcreteTypeMunger> getTypeMungers() {
110
111
                return resolvedTypeX.getTypeMungers();
111
112
        }
112
113
 
113
 
        public Collection getPrivilegedAccesses() {
114
 
                return Collections.EMPTY_LIST;
 
114
        public Collection<ResolvedMember> getPrivilegedAccesses() {
 
115
                return Collections.emptyList();
115
116
        }
116
117
 
117
118
        public int getModifiers() {