View Javadoc

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