summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/java-stable-20060304/sca/core/src/test/java/org/apache/tuscany/core/injection/SuperBean.java
blob: 5d88aeb1a82e370a36ceab48cf5d318e103366e4 (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
package org.apache.tuscany.core.injection;

/**
 * @version $Rev$ $Date$
 */
public class SuperBean {

    public static final int ALL_SUPER_FIELDS = 3;

    public static final int ALL_SUPER_METHODS = 4;

    private String superField1;

    public void setSuperMethod1(String param) {
    }

    public void setSuperMethod1(int param) {
    }

    public void override(String param) throws Exception {
        throw new Exception("Override not handled");
    }

    public void noOverride() throws Exception {
    }

}