1 | |
package org.kuali.rice.krad.uif.container; |
2 | |
|
3 | |
import org.kuali.rice.krad.uif.field.MessageField; |
4 | |
|
5 | |
import java.io.Serializable; |
6 | |
|
7 | |
public class NodePrototype implements Serializable { |
8 | |
private static final long serialVersionUID = 1L; |
9 | |
|
10 | |
private MessageField labelPrototype; |
11 | |
private Group dataGroupPrototype; |
12 | |
|
13 | 0 | public NodePrototype() { |
14 | |
|
15 | 0 | } |
16 | |
|
17 | |
|
18 | |
|
19 | |
|
20 | |
public void setLabelPrototype(MessageField labelPrototype) { |
21 | 0 | this.labelPrototype = labelPrototype; |
22 | 0 | } |
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
public MessageField getLabelPrototype() { |
28 | 0 | return this.labelPrototype; |
29 | |
} |
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
public void setDataGroupPrototype(Group dataGroupPrototype) { |
35 | 0 | this.dataGroupPrototype = dataGroupPrototype; |
36 | 0 | } |
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
public Group getDataGroupPrototype() { |
42 | 0 | return this.dataGroupPrototype; |
43 | |
} |
44 | |
} |