summaryrefslogtreecommitdiff
path: root/src/us/minak/MetaExpression.java
blob: f9c6cbec02c4b8484d81b577e60e5a8e9d115e6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package us.minak;

public class MetaExpression {
	public static enum State {
		ON, OFF, LOCK
	}

	public State state;
	private String value;

	public String getValue() {
		//however we want to do return this
		return this.value;
	}

	public void setValue(String value) {
		this.value = value;
	}

	MetaExpression(String value) {
		this.value = value;
		this.state = State.OFF;
	}
}