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