01: package org.drools.util.asm;
02:
03: public class InterfaceChildImpl extends AbstractClass implements
04: InterfaceChild {
05:
06: private String bar;
07: private int foo;
08: private int baz;
09: private String URI;
10:
11: public InterfaceChildImpl(final String HTML, final String bar,
12: final int foo, final int baz, final String uri) {
13: super (HTML);
14: this .bar = bar;
15: this .foo = foo;
16: this .baz = baz;
17: this .URI = uri;
18: }
19:
20: /**
21: * @return the bar
22: */
23: public String getBar() {
24: return this .bar;
25: }
26:
27: /**
28: * @param bar the bar to set
29: */
30: public void setBar(final String bar) {
31: this .bar = bar;
32: }
33:
34: /**
35: * @return the baz
36: */
37: public int getBaz() {
38: return this .baz;
39: }
40:
41: /**
42: * @param baz the baz to set
43: */
44: public void setBaz(final int baz) {
45: this .baz = baz;
46: }
47:
48: /**
49: * @return the foo
50: */
51: public int getFoo() {
52: return this .foo;
53: }
54:
55: /**
56: * @param foo the foo to set
57: */
58: public void setFoo(final int foo) {
59: this .foo = foo;
60: }
61:
62: /**
63: * @return the uRI
64: */
65: public String getURI() {
66: return this .URI;
67: }
68:
69: /**
70: * @param uri the uRI to set
71: */
72: public void setURI(final String uri) {
73: this.URI = uri;
74: }
75:
76: }
|