01: package org.drools;
02:
03: public class FactC {
04: String f1;
05: Integer f2;
06: Float f3;
07:
08: public FactC(final String a, final Integer b, final Float c) {
09: this .f1 = a;
10: this .f2 = b;
11: this .f3 = c;
12: }
13:
14: public FactC() {
15:
16: }
17:
18: public String getF1() {
19: return this .f1;
20: }
21:
22: public void setF1(final String s) {
23: this .f1 = s;
24: }
25:
26: public Integer getF2() {
27: return this .f2;
28: }
29:
30: public void setF2(final Integer i) {
31: this .f2 = i;
32: }
33:
34: public Float getF3() {
35: return this .f3;
36: }
37:
38: public void setF3(final Float f) {
39: this.f3 = f;
40: }
41:
42: }
|