From f58eafdab5931cf4e0588b6096c152753bd4bab5 Mon Sep 17 00:00:00 2001 From: Musachy Barroso Date: Sat, 22 Sep 2007 13:41:05 +0000 Subject: [PATCH] Fixing javadocs for snippet plugin git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@578438 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/struts2/dojo/components/TabbedPanel.java | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/TabbedPanel.java b/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/TabbedPanel.java index 9023b4063..100abeeaa 100644 --- a/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/TabbedPanel.java +++ b/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/TabbedPanel.java @@ -45,12 +45,8 @@ import com.opensymphony.xwork2.util.ValueStack; * *

Examples *

- * - * The following is an example of a tabbedpanel and panel tag utilizing local and remote content.

- * * - * - *

+ * 
  * <s:tabbedpanel id="test" >
  *    <s:div id="one" label="one" theme="ajax" labelposition="top" >
  *        This is the first pane<br/>
@@ -63,12 +59,9 @@ import com.opensymphony.xwork2.util.ValueStack;
  *        This is the remote tab
  *    </s:div>
  * </s:tabbedpanel>
- * 
- * + * * * - *

Use notify topics to prevent a tab from being selected

- *
  * <script type="text/javascript">
  * dojo.event.topic.subscribe("/beforeSelect", function(event, tab, tabContainer){
  *     event.cancel = true;
@@ -83,7 +76,6 @@ import com.opensymphony.xwork2.util.ValueStack;
  *        Another tab
  *    </s:div>
  * </s:tabbedpanel>
- * 
* */ @StrutsTag(name="tabbedpanel", tldTagClass="org.apache.struts2.dojo.views.jsp.ui.TabbedPanelTag", description="Render a tabbedPanel widget.")