You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2006/11/01 17:51:00 UTC

svn commit: r469979 - /directory/branches/shared/0.9.5/ldap/src/main/java/org/apache/directory/shared/ldap/message/SearchResponseEntry.java

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 );
 }