From 3403adc8ac690439605072f9c4dc30995abac99f Mon Sep 17 00:00:00 2001 From: Benjamin Culkin Date: Tue, 21 May 2024 17:52:46 -0400 Subject: More work on getting a working example Took a little bit, but I fixed the bindings and found the place where they are supposed to be --- wotonomy-web-test/WEB-INF/classes/OtherAction.java | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 wotonomy-web-test/WEB-INF/classes/OtherAction.java (limited to 'wotonomy-web-test/WEB-INF/classes/OtherAction.java') diff --git a/wotonomy-web-test/WEB-INF/classes/OtherAction.java b/wotonomy-web-test/WEB-INF/classes/OtherAction.java deleted file mode 100644 index 00a3155..0000000 --- a/wotonomy-web-test/WEB-INF/classes/OtherAction.java +++ /dev/null @@ -1,21 +0,0 @@ -//A direct action subclass, with only one method -//that gets called from Main.wo - -import net.wotonomy.foundation.*; -import net.wotonomy.web.*; - -public class OtherAction extends WODirectAction { - - public OtherAction(WORequest r) { - super(r); - } - - public WOActionResults linkTestAction() { - System.out.println("creating and configuring Main.wo"); - WOComponent page = pageWithName("Main"); - page.takeValueForKey(new Boolean(false), "showTime"); - page.takeValueForKey("direct action called", "textValue"); - return page; - } - -} -- cgit v1.2.3