View Javadoc

1   /**
2    * Copyright 2012 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   *
15   * Created by Paul on 2012/11/22
16   */
17  package org.kuali.student.enrollment.class1.krms.form;
18  
19  import org.kuali.rice.core.api.util.tree.Tree;
20  import org.kuali.rice.krms.dto.RuleEditor;
21  import org.kuali.student.enrollment.class1.krms.dto.EnrolRuleEditor;
22  import org.kuali.rice.krms.tree.node.TreeNode;
23  import org.kuali.student.enrollment.uif.form.KSUifForm;
24  
25  
26  /**
27   * This class //TODO ...
28   *
29   * @author Kuali Student Team
30   */
31  public class CompareRuleForm extends KSUifForm {
32  
33  
34      private String ruleId;
35      private RuleEditor ruleEditor = new RuleEditor();
36      private  Tree<TreeNode, String> cmRule;
37  
38  
39      public RuleEditor getRuleEditor() {
40          return ruleEditor;
41      }
42      public String getRuleId() {
43          return ruleId;
44      }
45  
46      public void setRuleId(String ruleId) {
47          this.ruleId = ruleId;
48      }
49  
50      public Tree<TreeNode, String> getCmRule() {
51          return cmRule;
52      }
53  
54      public void setCmRule(Tree<TreeNode, String> cmRule) {
55          this.cmRule = cmRule;
56      }
57  
58  }