From 02bc52037e9ccccca672d6156d9c325c74fe28b3 Mon Sep 17 00:00:00 2001 From: Benjamin Culkin Date: Mon, 1 Jul 2024 17:27:48 -0400 Subject: 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" --- .../src/main/java/net/wotonomy/web/WODynamicElement.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WODynamicElement.java') 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; } -- cgit v1.2.3