1 package org.kuali.ole.deliver.form.drools;
2
3 import org.kuali.rice.krad.web.form.MaintenanceDocumentForm;
4
5
6
7
8 public class DroolEditorMaintenanceForm extends MaintenanceDocumentForm {
9 private boolean showGeneralCheckSection;
10 private boolean showCheckoutSection;
11 private boolean showRenewCheckSection;
12 private boolean showNoticeSection;
13 private boolean showCheckinSection;
14 private boolean showFooterSection;
15 private boolean disableAddEditor;
16 private boolean editSection;
17
18 public boolean isShowGeneralCheckSection() {
19 return showGeneralCheckSection;
20 }
21
22 public void setShowGeneralCheckSection(boolean showGeneralCheckSection) {
23 this.showGeneralCheckSection = showGeneralCheckSection;
24 }
25
26 public boolean isShowCheckoutSection() {
27 return showCheckoutSection;
28 }
29
30 public void setShowCheckoutSection(boolean showCheckoutSection) {
31 this.showCheckoutSection = showCheckoutSection;
32 }
33
34 public boolean isShowRenewCheckSection() {
35 return showRenewCheckSection;
36 }
37
38 public void setShowRenewCheckSection(boolean showRenewCheckSection) {
39 this.showRenewCheckSection = showRenewCheckSection;
40 }
41
42 public boolean isShowNoticeSection() {
43 return showNoticeSection;
44 }
45
46 public void setShowNoticeSection(boolean showNoticeSection) {
47 this.showNoticeSection = showNoticeSection;
48 }
49
50 public boolean isShowCheckinSection() {
51 return showCheckinSection;
52 }
53
54 public void setShowCheckinSection(boolean showCheckinSection) {
55 this.showCheckinSection = showCheckinSection;
56 }
57
58 public void resetFlagValues(){
59 showGeneralCheckSection = false;
60 showCheckoutSection = false;
61 showRenewCheckSection = false;
62 showNoticeSection = false;
63 showCheckinSection = false;
64 showFooterSection = false;
65 }
66
67 public boolean isShowFooterSection() {
68 return showFooterSection;
69 }
70
71 public void setShowFooterSection(boolean showFooterSection) {
72 this.showFooterSection = showFooterSection;
73 }
74
75 public boolean isDisableAddEditor() {
76 return disableAddEditor;
77 }
78
79 public void setDisableAddEditor(boolean disableAddEditor) {
80 this.disableAddEditor = disableAddEditor;
81 }
82
83 public boolean isEditSection() {
84 return editSection;
85 }
86
87 public void setEditSection(boolean editSection) {
88 this.editSection = editSection;
89 }
90 }