Author: musachy Date: Thu Sep 20 09:50:01 2007 New Revision: 577810 URL: http://svn.apache.org/viewvc?rev=577810&view=rev Log: Fixing javadocs for snippet plugin
Modified: struts/struts2/trunk/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/Anchor.java Modified: struts/struts2/trunk/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/Anchor.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/Anchor.java?rev=577810&r1=577809&r2=577810&view=diff ============================================================================== --- struts/struts2/trunk/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/Anchor.java (original) +++ struts/struts2/trunk/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/Anchor.java Thu Sep 20 09:50:01 2007 @@ -39,7 +39,6 @@ * <p>Examples</p> * * <!-- START SNIPPET: example1 --> - * <p>Update target content with html returned from an action:</p> * <div id="div1">Div 1</div> * <s:url id="ajaxTest" value="/AjaxTest.action"/> * @@ -49,7 +48,6 @@ * <!-- END SNIPPET: example1 --> * * <!-- START SNIPPET: example2 --> - * <p>Submit form(anchor inside the form):</p> * <s:form id="form" action="AjaxTest"> * <input type="textbox" name="data"> * <sx:a>Submit form</sx:a> @@ -57,7 +55,6 @@ * <!-- END SNIPPET: example2 --> * * <!-- START SNIPPET: example3 --> - * <p>Submit form(anchor outside the form)</p> * <s:form id="form" action="AjaxTest"> * <input type="textbox" name="data"> * </s:form> @@ -66,7 +63,6 @@ * <!-- END SNIPPET: example3 --> * * <!-- START SNIPPET: example4 --> - * <p>Using beforeNotifyTopics:</p> * <script type="text/javascript"> * dojo.event.topic.subscribe("/before", function(event, widget){ * alert('inside a topic event. before request'); @@ -79,7 +75,6 @@ * <!-- END SNIPPET: example4 --> * * <!-- START SNIPPET: example5 --> - * <p>Using afterNotifyTopics and highlights target:</p> * <script type="text/javascript"> * dojo.event.topic.subscribe("/after", function(data, request, widget){ * alert('inside a topic event. after request'); @@ -93,7 +88,6 @@ * <!-- END SNIPPET: example5 --> * * <!-- START SNIPPET: example6 --> - * <p>Using errorNotifyTopics and indicator:</p> * <script type="text/javascript"> * dojo.event.topic.subscribe("/error", function(error, request, widget){ * alert('inside a topic event. on error');