]> gerrit.simantics Code Review - simantics/platform.git/blob - StatePropertyNode.java
4c0b41054b99e03286c6ab5f117ec245905d2991
[simantics/platform.git] / StatePropertyNode.java
1 package org.simantics.document.server.state;
2
3 public class StatePropertyNode extends StateNode {
4
5         public String name;
6         public Object value;
7
8         public StatePropertyNode(String name) {
9                 this.name = name;
10         }
11
12         public String getName() {
13                 return name;
14         }
15
16         public Object getValue() {
17                 return value;
18         }
19
20         public void setValue(Object value) {
21                 this.value = value;
22         }
23 }