You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by an...@apache.org on 2007/10/11 18:17:53 UTC

svn commit: r583868 - /jackrabbit/trunk/jackrabbit-spi/src/main/java/org/apache/jackrabbit/spi/NodeInfo.java

Author: angela
Date: Thu Oct 11 09:17:52 2007
New Revision: 583868

URL: http://svn.apache.org/viewvc?rev=583868&view=rev
Log:
javadoc improvement. patch provided by michael duerig.

Modified:
    jackrabbit/trunk/jackrabbit-spi/src/main/java/org/apache/jackrabbit/spi/NodeInfo.java

Modified: jackrabbit/trunk/jackrabbit-spi/src/main/java/org/apache/jackrabbit/spi/NodeInfo.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-spi/src/main/java/org/apache/jackrabbit/spi/NodeInfo.java?rev=583868&r1=583867&r2=583868&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-spi/src/main/java/org/apache/jackrabbit/spi/NodeInfo.java (original)
+++ jackrabbit/trunk/jackrabbit-spi/src/main/java/org/apache/jackrabbit/spi/NodeInfo.java Thu Oct 11 09:17:52 2007
@@ -43,7 +43,7 @@
 
     /**
      * Index of the node.
-     * 
+     *
      * @return the index.
      */
     public int getIndex();
@@ -54,7 +54,10 @@
     public QName getNodetype();
 
     /**
-     * @return Array of QName representing the names of mixin nodetypes.
+     * @return Array of QName representing the names of mixin nodetypes. This
+     * includes only explicitly assigned mixin nodetypes. It does not include
+     * mixin types inherited through the additon of supertypes to the primary
+     * type hierarchy.
      */
     public QName[] getMixins();
 
@@ -71,4 +74,4 @@
      * @see PropertyInfo#getId()
      */
     public Iterator getPropertyIds();
-}
\ No newline at end of file
+}