summaryrefslogtreecommitdiff
path: root/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOComponentContent.java
diff options
context:
space:
mode:
Diffstat (limited to 'projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOComponentContent.java')
-rw-r--r--projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOComponentContent.java27
1 files changed, 15 insertions, 12 deletions
diff --git a/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOComponentContent.java b/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOComponentContent.java
index 1544934..909212c 100644
--- a/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOComponentContent.java
+++ b/projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOComponentContent.java
@@ -21,25 +21,28 @@ package net.wotonomy.web;
import net.wotonomy.foundation.NSDictionary;
/**
- * Used to include a component's content inside another component. This way, you can create reusable components
- * with content that surrounds the component it's in. In reality all it does is forward the appendToResponse
- * method to the WOElement containing the HTML between the WEBOBJECT tags that define this element.
+ * Used to include a component's content inside another component. This way, you
+ * can create reusable components with content that surrounds the component it's
+ * in. In reality all it does is forward the appendToResponse method to the
+ * WOElement containing the HTML between the WEBOBJECT tags that define this
+ * element.
+ *
* @author michael@mpowers.net
* @author $Author: cgruber $
* @version $Revision: 905 $
*/
public class WOComponentContent extends WODynamicElement {
- public WOComponentContent() {
- super();
- }
+ public WOComponentContent() {
+ super();
+ }
- public WOComponentContent(String n, NSDictionary m, WOElement t) {
- super(n, m, t);
- }
+ public WOComponentContent(String n, NSDictionary m, WOElement t) {
+ super(n, m, t);
+ }
- public void appendToResponse(WOResponse r, WOContext c) {
- c.component().rootElement.appendToResponse(r, c);
- }
+ public void appendToResponse(WOResponse r, WOContext c) {
+ c.component().rootElement.appendToResponse(r, c);
+ }
}