1 package org.kuali.ole.describe.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.io.Serializable;
6
7
8
9
10
11
12
13
14 public class BoundwithSelection extends PersistableBusinessObjectBase
15 implements Serializable {
16 protected boolean selectTree1;
17 protected boolean selectTree2;
18 protected boolean boundWithTree;
19 private String title;
20 private String selectedInstance;
21
22 public boolean isSelectTree1() {
23 return selectTree1;
24 }
25
26 public void setSelectTree1(boolean selectTree1) {
27 this.selectTree1 = selectTree1;
28 }
29
30 public boolean isSelectTree2() {
31 return selectTree2;
32 }
33
34 public void setSelectTree2(boolean selectTree2) {
35 this.selectTree2 = selectTree2;
36 }
37
38 public String getTitle() {
39 return title;
40 }
41
42 public void setTitle(String title) {
43 this.title = title;
44 }
45
46 public boolean isBoundWithTree() {
47 return boundWithTree;
48 }
49
50 public void setBoundWithTree(boolean boundWithTree) {
51 this.boundWithTree = boundWithTree;
52 }
53
54 public String getSelectedInstance() {
55 return selectedInstance;
56 }
57
58 public void setSelectedInstance(String selectedInstance) {
59 this.selectedInstance = selectedInstance;
60 }
61 }
62