You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sc...@apache.org on 2005/06/24 03:51:08 UTC

svn commit: r201538 - in /myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom: tabbedpane/TabChangeListenerTag.java tree/taglib/TreeSelectionListenerTag.java tree2/HtmlTree.java tree2/TreeNode.java tree2/UITreeData.java

Author: schof
Date: Thu Jun 23 18:51:06 2005
New Revision: 201538

URL: http://svn.apache.org/viewcvs?rev=201538&view=rev
Log:
fixed misc javadoc problems

Modified:
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tabbedpane/TabChangeListenerTag.java
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree/taglib/TreeSelectionListenerTag.java
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/HtmlTree.java
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/TreeNode.java
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/UITreeData.java

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tabbedpane/TabChangeListenerTag.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tabbedpane/TabChangeListenerTag.java?rev=201538&r1=201537&r2=201538&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tabbedpane/TabChangeListenerTag.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tabbedpane/TabChangeListenerTag.java Thu Jun 23 18:51:06 2005
@@ -27,7 +27,7 @@
 
 
 /**
- * Tag to add a tab change listeners to a {@link org.apache.myfaces.custom.tabbedpane.HtmlPanelTabbedPane]
+ * Tag to add a tab change listeners to a {@link org.apache.myfaces.custom.tabbedpane.HtmlPanelTabbedPane}
  *
  * @author <a href="mailto:oliver@rossmueller.com">Oliver Rossmueller</a>
  * @version $Revision$ $Date$

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree/taglib/TreeSelectionListenerTag.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree/taglib/TreeSelectionListenerTag.java?rev=201538&r1=201537&r2=201538&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree/taglib/TreeSelectionListenerTag.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree/taglib/TreeSelectionListenerTag.java Thu Jun 23 18:51:06 2005
@@ -29,7 +29,7 @@
 
 
 /**
- * Tag to add a tree selection listeners to a {@link HtmlTree]
+ * Tag to add a tree selection listeners to a {@link HtmlTree}
  *
  * @author <a href="mailto:oliver@rossmueller.com">Oliver Rossmueller</a>
  * @version $Revision$ $Date$

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/HtmlTree.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/HtmlTree.java?rev=201538&r1=201537&r2=201538&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/HtmlTree.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/HtmlTree.java Thu Jun 23 18:51:06 2005
@@ -170,8 +170,9 @@
     }
 
     /**
-     * Implements the {@link ActionListener} interface.  Basically, this method is used to listen for
-     * node selection events (when a user has clicked on a leaf node.)
+     * Implements the {@link javax.faces.event.ActionListener} interface.  Basically, this
+     * method is used to listen for node selection events (when a user has clicked on a
+     * leaf node.)
      *
      * @param event ActionEvent
      */

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/TreeNode.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/TreeNode.java?rev=201538&r1=201537&r2=201538&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/TreeNode.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/TreeNode.java Thu Jun 23 18:51:06 2005
@@ -57,7 +57,7 @@
 
     /**
      * Sets the identifier associated with the {@link TreeNode}.
-     * @param id The identifier
+     * @param identifier The identifier
      */
     public void setIdentifier(String identifier);
 

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/UITreeData.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/UITreeData.java?rev=201538&r1=201537&r2=201538&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/UITreeData.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/tree2/UITreeData.java Thu Jun 23 18:51:06 2005
@@ -45,8 +45,8 @@
  * TreeData is a {@link UIComponent} that supports binding data stored in a tree represented
  * by a {@link TreeNode} instance.  During iterative processing over the tree nodes in the
  * data model, the object for the current node is exposed as a request attribute under the key
- * specified by the <code>var</code> property.  {@link javax.faces.render.Renderer}s of this component should use
- * the appropriate {@link Facet} to assist in rendering.
+ * specified by the <code>var</code> property.  {@link javax.faces.render.Renderer}s of this
+ * component should use the appropriate facet to assist in rendering.
  *
  * @author Sean Schofield
  * @author Hans Bergsten (Some code taken from an example in his O'Reilly JavaServer Faces book. Copied with permission)
@@ -122,7 +122,7 @@
             nodeEvent.getComponent().broadcast(nodeEvent);
             setNodeId(currNodeId);
             return;
-        } 
+        }
         else
         {
             super.broadcast(event);
@@ -294,7 +294,7 @@
         {
             return;
         }
-        
+
         try
         {
             model.setNodeId(nodeId);
@@ -302,15 +302,15 @@
         catch (IndexOutOfBoundsException aob)
         {
             /**
-             * This might happen if we are trying to process a commandLink for a node that node that no longer 
-             * exists.  Instead of allowing a RuntimeException to crash the application, we will add a warning 
-             * message so the user can optionally display the warning.  Also, we will allow the user to provide 
+             * This might happen if we are trying to process a commandLink for a node that node that no longer
+             * exists.  Instead of allowing a RuntimeException to crash the application, we will add a warning
+             * message so the user can optionally display the warning.  Also, we will allow the user to provide
              * their own value binding method to be called so they can handle it how they see fit.
              */
             FacesMessage message = MessageUtils.getMessage(MISSING_NODE, new String[] {nodeId});
             message.setSeverity(FacesMessage.SEVERITY_WARN);
             FacesContext.getCurrentInstance().addMessage(getId(), message);
-            
+
             /** @todo call hook */
             /** @todo figure out whether or not to abort this method gracefully */
         }