summaryrefslogtreecommitdiff
path: root/wotonomy-web-test/src/main/java/Main.java
blob: a12ca44afcad8aaaae772c480571e1971c62fb3f (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import net.wotonomy.foundation.NSDate;
import net.wotonomy.web.*;

public class Main extends WOComponent {

	private boolean showing;
	private String textFieldValue;

	public Main() {
		super();
		showing = true;
	}

	public NSDate getCurrentTime() {
		return new NSDate();
	}

	public boolean getShowTime() {
		return showing;
	}
	public void setShowTime(boolean value) {
		showing = value;
	}

	public WOActionResults submit() {
		System.out.println("Form Submitted");
		System.out.println("textfield says '" + getTextValue() + "'");
		return null;
	}

	public void takeValuesFromRequest(WORequest r, WOContext c) {
		System.out.println("taking values from request");
		if (r.formValueForKey("show") != null)
			setShowTime(r.formValueForKey("show").equals("true"));
	}

	public String getTimeLinkString() {
		return showing ? "Hide the time display" : "Show time display";
	}

	public void setTextValue(String value) {
		textFieldValue = value;
	}
	public String getTextValue() {
		return textFieldValue;
	}

	public WOComponent switchTime() {
		System.out.println("switching time display");
		setShowTime(!getShowTime());
		return this;
	}

}