1 package com.sri.emo.wizard.creation;
2
3
4 /***
5 * Relation Page-specific metadata.
6 *
7 * @author Michael Rimov
8 * @version 1.0
9 */
10 public class CreationPageMetadata extends MinMaxPageMetadata {
11 private String partNodeRelation;
12 private String nodeType;
13 private String nodeId;
14
15
16 public CreationPageMetadata() {
17 super();
18 }
19
20 public void setPartNodeRelation(String nodeRelation) {
21 this.partNodeRelation = nodeRelation;
22 }
23
24 public void setNodeType(String nodeType) {
25 this.nodeType = nodeType;
26 }
27
28 public void setNodeId(String nodeId) {
29 this.nodeId = nodeId;
30 }
31
32
33
34 public String getPartNodeRelation() {
35 return partNodeRelation;
36 }
37
38 public String getNodeType() {
39 return nodeType;
40 }
41
42 public String getNodeId() {
43 return nodeId;
44 }
45
46
47
48 }