Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 68896 invoked from network); 1 Nov 2006 16:51:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Nov 2006 16:51:25 -0000 Received: (qmail 88141 invoked by uid 500); 1 Nov 2006 16:51:36 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 88112 invoked by uid 500); 1 Nov 2006 16:51:36 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 88101 invoked by uid 99); 1 Nov 2006 16:51:36 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Nov 2006 08:51:36 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME 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; Wed, 01 Nov 2006 08:51:24 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 83B391A9846; Wed, 1 Nov 2006 08:51:00 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r469979 - /directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/SearchResponseEntry.java Date: Wed, 01 Nov 2006 16:51:00 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061101165100.83B391A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Wed Nov 1 08:50:59 2006 New Revision: 469979 URL: http://svn.apache.org/viewvc?view=rev&rev=469979 Log: Fixed javadoc Modified: directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/SearchResponseEntry.java Modified: directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/SearchResponseEntry.java URL: http://svn.apache.org/viewvc/directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/SearchResponseEntry.java?view=diff&rev=469979&r1=469978&r2=469979 ============================================================================== --- directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/SearchResponseEntry.java (original) +++ directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/SearchResponseEntry.java Wed Nov 1 08:50:59 2006 @@ -50,8 +50,7 @@ /** * Sets the distinguished name of the entry object returned. * - * @param a_dn - * the Dn of the entry returned. + * @param dn the Dn of the entry returned. */ void setObjectName( LdapDN dn ); @@ -67,8 +66,8 @@ /** * Sets the set of attributes and all their values in a MultiMap. * - * @param a_attributes + * @param attributes * the set of attributes and all their values */ - void setAttributes( Attributes a_attributes ); + void setAttributes( Attributes attributes ); }