From commits-return-4705-apmail-jackrabbit-commits-archive=jackrabbit.apache.org@jackrabbit.apache.org Thu Oct 11 16:18:15 2007 Return-Path: Delivered-To: apmail-jackrabbit-commits-archive@www.apache.org Received: (qmail 91586 invoked from network); 11 Oct 2007 16:18:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Oct 2007 16:18:14 -0000 Received: (qmail 95582 invoked by uid 500); 11 Oct 2007 16:18:02 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 95519 invoked by uid 500); 11 Oct 2007 16:18:02 -0000 Mailing-List: contact commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list commits@jackrabbit.apache.org Received: (qmail 95510 invoked by uid 99); 11 Oct 2007 16:18:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Oct 2007 09:18:02 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Oct 2007 16:18:13 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AC5681A9832; Thu, 11 Oct 2007 09:17:53 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r583868 - /jackrabbit/trunk/jackrabbit-spi/src/main/java/org/apache/jackrabbit/spi/NodeInfo.java Date: Thu, 11 Oct 2007 16:17:53 -0000 To: commits@jackrabbit.apache.org From: angela@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071011161753.AC5681A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 +}