View Javadoc

1   /**
2    * Copyright 2010 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  
16  package org.kuali.student.lum.common.client.lo;
17  
18  import org.kuali.student.core.assembly.data.Data;
19  
20  public class OutlineNode<T> {
21      int indentLevel = 0;
22  
23      T userObject;
24  
25      OutlineNodeModel<T> outlineModel;
26      
27      // TODO M4 - some way to subclass OutlineNode? 
28      private Object opaque;
29  
30  	private Data metaInfo;
31  
32      public void setModel(OutlineNodeModel<T> model) {
33        outlineModel = model;
34      }
35  
36      public void setCurrentNode() {
37        outlineModel.setCurrentNode(this);
38      }
39  
40      public T getUserObject() {
41        return userObject;
42      }
43  
44      public void setUserObject(T u) {
45        userObject = u;
46      }
47  
48      public void indent() {
49        indentLevel++;
50      }
51  
52      public void outdent() {
53        indentLevel--;
54      }
55  
56      public void setIndentLevel(int level) {
57        indentLevel = level;
58      }
59  
60      public int getIndentLevel() {
61        return indentLevel;
62      }
63  
64  	public void setOpaque(Object opaque) {
65  		this.opaque = opaque;
66  	}
67  
68  	public Object getOpaque() {
69  		return opaque;
70  	}
71  
72  	public void setMetaInfo(Data metaInfo) {
73  		this.metaInfo=metaInfo;
74  	}
75  	public Data getMetaInfo() {
76  		return metaInfo;
77  	}
78    }