weaver      2004/10/29 06:58:42

  Modified:    components/prefs/src/java/org/apache/jetspeed/prefs/om/impl
                        NodeImpl.java
  Log:
  
  
  Revision  Changes    Path
  1.5       +45 -31    
jakarta-jetspeed-2/components/prefs/src/java/org/apache/jetspeed/prefs/om/impl/NodeImpl.java
  
  Index: NodeImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed-2/components/prefs/src/java/org/apache/jetspeed/prefs/om/impl/NodeImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- NodeImpl.java     5 May 2004 18:32:43 -0000       1.4
  +++ NodeImpl.java     29 Oct 2004 13:58:42 -0000      1.5
  @@ -14,17 +14,21 @@
    */
   package org.apache.jetspeed.prefs.om.impl;
   
  +import java.sql.Timestamp;
   import java.util.ArrayList;
   import java.util.Collection;
  -import java.sql.Timestamp;
   
   import org.apache.jetspeed.prefs.om.Node;
   
   /**
  - * <p>[EMAIL PROTECTED] Node} interface implementation.</p>
  - * <p>Represents a preferences node.</p>
  - *
  - * @author <a href="mailto:[EMAIL PROTECTED]">David Le Strat</a>
  + * <p>
  + * [EMAIL PROTECTED] Node}interface implementation.
  + * </p>
  + * <p>
  + * Represents a preferences node.
  + * </p>
  + * 
  + * @author <a href="mailto:[EMAIL PROTECTED]">David Le Strat </a>
    */
   public class NodeImpl implements Node
   {
  @@ -38,30 +42,37 @@
       private Timestamp creationDate;
   
       /**
  -     * <p>Preferences node implementation default constructor.</p>
  +     * <p>
  +     * Preferences node implementation default constructor.
  +     * </p>
        */
       public NodeImpl()
       {
       }
   
       /**
  -     * <p>Node constructor given:</p>
  +     * <p>
  +     * Node constructor given:
  +     * </p>
        * <ul>
  -     *  <li>Parent node id,</li>
  -     *  <li>Property set definition id: Long so that we can
  -     *  pass null value if the node does not have any properties
  -     *  associated to it,</li>
  -     *  <li>Node name,</li>
  -     *  <li>Node type,</li>
  -     *  <li>Full path.</li>
  +     * <li>Parent node id,</li>
  +     * <li>Property set definition id: Long so that we can pass null value if
  +     * the node does not have any properties associated to it,</li>
  +     * <li>Node name,</li>
  +     * <li>Node type,</li>
  +     * <li>Full path.</li>
        * </ul>
  -     * @param parentNodeId The parent node id.
  -     * @param nodeName The node name.
  -     * @param nodeType The node type.
  -     * @param fullPath The full path.
  +     * 
  +     * @param parentNodeId
  +     *            The parent node id.
  +     * @param nodeName
  +     *            The node name.
  +     * @param nodeType
  +     *            The node type.
  +     * @param fullPath
  +     *            The full path.
        */
  -    public NodeImpl(Long parentNodeId, String nodeName,
  -                    int nodeType, String fullPath)
  +    public NodeImpl( Long parentNodeId, String nodeName, int nodeType, String 
fullPath )
       {
           this.parentNodeId = parentNodeId;
           this.nodeName = nodeName;
  @@ -84,7 +95,7 @@
       /**
        * @see org.apache.jetspeed.prefs.om.Node#setNodeId(int)
        */
  -    public void setNodeId(long nodeId)
  +    public void setNodeId( long nodeId )
       {
           this.nodeId = nodeId;
       }
  @@ -100,7 +111,7 @@
       /**
        * @see org.apache.jetspeed.prefs.om.Node#setParentNodeId(java.lang.Long)
        */
  -    public void setParentNodeId(Long parentNodeId)
  +    public void setParentNodeId( Long parentNodeId )
       {
           this.parentNodeId = parentNodeId;
       }
  @@ -116,7 +127,7 @@
       /**
        * @see 
org.apache.jetspeed.prefs.om.Node#setNodeProperties(java.util.Collection)
        */
  -    public void setNodeProperties(Collection nodeProperties)
  +    public void setNodeProperties( Collection nodeProperties )
       {
           this.nodeProperties = nodeProperties;
       }
  @@ -132,7 +143,7 @@
       /**
        * @see org.apache.jetspeed.prefs.om.Node#setNodeKeys(java.util.Collection)
        */
  -    public void setNodeKeys(Collection nodeKeys)
  +    public void setNodeKeys( Collection nodeKeys )
       {
           this.nodeKeys = nodeKeys;
       }
  @@ -148,7 +159,7 @@
       /**
        * @see org.apache.jetspeed.prefs.om.Node#setNodeName(java.lang.String)
        */
  -    public void setNodeName(String nodeName)
  +    public void setNodeName( String nodeName )
       {
           this.nodeName = nodeName;
       }
  @@ -164,7 +175,7 @@
       /**
        * @see org.apache.jetspeed.prefs.om.Node#setNodeType(int)
        */
  -    public void setNodeType(int nodeType)
  +    public void setNodeType( int nodeType )
       {
           this.nodeType = nodeType;
       }
  @@ -180,7 +191,7 @@
       /**
        * @see org.apache.jetspeed.prefs.om.Node#setFullPath(java.lang.String)
        */
  -    public void setFullPath(String fullPath)
  +    public void setFullPath( String fullPath )
       {
           this.fullPath = fullPath;
       }
  @@ -196,7 +207,7 @@
       /**
        * @see org.apache.jetspeed.prefs.om.Node#setCreationDate(java.sql.Timestamp)
        */
  -    public void setCreationDate(Timestamp creationDate)
  +    public void setCreationDate( Timestamp creationDate )
       {
           this.creationDate = creationDate;
       }
  @@ -214,13 +225,16 @@
       /**
        * @see org.apache.jetspeed.prefs.om.Node#setModifiedDate(java.sql.Timestamp)
        */
  -    public void setModifiedDate(Timestamp modifiedDate)
  +    public void setModifiedDate( Timestamp modifiedDate )
       {
           this.modifiedDate = modifiedDate;
       }
   
       /**
  -     * <p>Convert <code>Node</code> to string.</p>
  +     * <p>
  +     * Convert <code>Node</code> to string.
  +     * </p>
  +     * 
        * @return The Node string value.
        */
       public String toString()
  @@ -236,4 +250,4 @@
           return toStringNode;
       }
   
  -}
  +}
  \ No newline at end of file
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to