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


public class Bean1 extends SuperBean {

    public static final int ALL_BEAN1_FIELDS = 3 + ALL_SUPER_FIELDS;

    public static final int ALL__BEAN1_METHODS = 4 + ALL_SUPER_METHODS - 1;

    private String field1;

    public void setMethod1(String param) {
    }

    public void setMethod1(int param) {
    }

    public void override(String param) throws Exception {
    }


    public void noOverride(String param) throws Exception {
    }


}