summaryrefslogtreecommitdiffstats
path: root/ajdoc/testdata/bug82340/Pointcuts.java
blob: d36116de84477837ea317c92d8b0c947020aae89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Created on Jan 12, 2005
 */

package foo;

/**
 * @author Mik Kersten
 */
public abstract aspect Pointcuts {

    private pointcut privatePointcut ();
    protected pointcut protectedPointcut ();
    public pointcut publicPointcut ();
    
    private void privateMethod () {
        
    }
    
    public void protectedMethod () {
        
    }
    
    public void publicMethod () {
        
    }
}