diff options
| author | Benjamin Culkin <scorpress@gmail.com> | 2024-05-20 17:58:16 -0400 |
|---|---|---|
| committer | Benjamin Culkin <scorpress@gmail.com> | 2024-05-20 17:58:16 -0400 |
| commit | 40a9d99496e098562f090fb7ffce9e749011b131 (patch) | |
| tree | 437df24d65470582e943e494a52db8ed65a881ae /projects/net.wotonomy.web/src/main/java/net/wotonomy/web/WOComponentContent.java | |
| parent | ff072dfe782f6f22123cd4ba050828d35c0d0fbd (diff) | |
Formatting pass
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.java | 27 |
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); + } } |
