~ubuntu-branches/ubuntu/natty/aspectj/natty

« back to all changes in this revision

Viewing changes to org.aspectj/modules/tests/new/packageAccessPR556/base2/p/C2.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2009-10-04 16:37:23 UTC
  • mfrom: (1.1.3 upstream) (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091004163723-ck4y7j7fhjxskkie
Tags: 1.6.6+dfsg-1
* New upstream release.
  - Update 02_use_gjdoc.diff patch
* Update my email address

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package p;
2
 
 
3
 
aspect A2 {
4
 
    private static int privateOne = 1;
5
 
    static int defaultOne = 1;
6
 
    protected static int protectedOne = 1;
7
 
    public static int publicOne = 1;
8
 
    pointcut p() : within (p..*) ;
9
 
}
10
 
 
11
 
class C2 {
12
 
    private static int privateOne = 1;
13
 
    static int defaultOne = 1;
14
 
    protected static int protectedOne = 1;
15
 
    public static int publicOne = 1;
16
 
    pointcut p() : within (p..*) ;
17
 
}