summaryrefslogtreecommitdiff
path: root/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WODynamicElement.java
diff options
context:
space:
mode:
authorBenjamin Culkin <scorpress@gmail.com>2024-07-01 17:27:48 -0400
committerBenjamin Culkin <scorpress@gmail.com>2024-07-01 17:27:48 -0400
commit02bc52037e9ccccca672d6156d9c325c74fe28b3 (patch)
treedb022b83c90562f461f4a27412caa9936a8dfd04 /projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WODynamicElement.java
parentc75d7dbd613a47b217499f7a856c469a8bc59e2a (diff)
Update a whole bunch of things
Yeah... not a great commit message. t.b.h, I could maybe've split the commit into more parts; but that would be quite a lot off effort and would have a pretty decent chance of at least one of the commits leaving the repository in a non-working state. For the future, will want to try and commit more often so there aren't these mega-commits where it's just "a whole bunch of stuff changed"
Diffstat (limited to 'projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WODynamicElement.java')
-rw-r--r--projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WODynamicElement.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WODynamicElement.java b/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WODynamicElement.java
index 6abb7d6..6cf7acd 100644
--- a/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WODynamicElement.java
+++ b/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WODynamicElement.java
@@ -36,6 +36,7 @@ import net.wotonomy.foundation.NSMutableDictionary;
* @version $Revision: 905 $
*/
public abstract class WODynamicElement extends WOElement {
+ private static final long serialVersionUID = -5383805382837136590L;
protected String name;
protected WOElement rootElement;
protected NSDictionary associations;
@@ -68,6 +69,7 @@ public abstract class WODynamicElement extends WOElement {
* context before the start of the request-response cycle. If the context has a
* current component, that component becomes this component's parent.
*/
+ @Override
void ensureAwakeInContext(WOContext aContext) {
if (rootElement != null) {
rootElement.ensureAwakeInContext(aContext);
@@ -168,6 +170,7 @@ public abstract class WODynamicElement extends WOElement {
* are associated with the element in the binding. This implementation does
* nothing.
*/
+ @Override
public void takeValuesFromRequest(WORequest aRequest, WOContext aContext) {
}
@@ -181,6 +184,7 @@ public abstract class WODynamicElement extends WOElement {
* the action specified in the binding, and return the result of that action.
* This implementation returns null.
*/
+ @Override
public WOActionResults invokeAction(WORequest aRequest, WOContext aContext) {
return null;
}
@@ -190,10 +194,12 @@ public abstract class WODynamicElement extends WOElement {
* to a user request. The message should be forwarded to any child elements so
* that the entire tree is traversed. This implementation does nothing.
*/
+ @Override
public void appendToResponse(WOResponse aResponse, WOContext aContext) {
// does nothing
}
+ @Override
public WOResponse generateResponse() {
return null;
}