summaryrefslogtreecommitdiff
path: root/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WODynamicElement.java
diff options
context:
space:
mode:
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;
}