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 2005/05/28 15:28:07 UTC

svn commit: r178870 - /directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/codec/grammars/UnBindRequestGrammar.java

Author: elecharny
Date: Sat May 28 06:28:00 2005
New Revision: 178870

URL: http://svn.apache.org/viewcvs?rev=178870&view=rev
Log:
Fixed some Javadoc

Modified:
    directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/codec/grammars/UnBindRequestGrammar.java

Modified: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/codec/grammars/UnBindRequestGrammar.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/codec/grammars/UnBindRequestGrammar.java?rev=178870&r1=178869&r2=178870&view=diff
==============================================================================
--- directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/codec/grammars/UnBindRequestGrammar.java (original)
+++ directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/codec/grammars/UnBindRequestGrammar.java Sat May 28 06:28:00 2005
@@ -31,7 +31,7 @@
 
 
 /**
- * This class implements the LdapMessage. All the actions are declared in this
+ * This class implements the UnBindRequest. All the actions are declared in this
  * class. As it is a singleton, these declaration are only done once.
  * 
  * If an action is to be added or modified, this is where the work is to be done !
@@ -66,7 +66,7 @@
     //~ Constructors -------------------------------------------------------------------------------
 
     /**
-     * Creates a new LdapMessageGrammar object.
+     * Creates a new UnBindRequestGrammar object.
      */
     private UnBindRequestGrammar()
     {
@@ -81,7 +81,6 @@
         //============================================================================================
         // protocolOp : UnBind Request
         //============================================================================================
-        // We have to allocate a UnBindRequestPOJO
         // LdapMessage ::= ... UnBindRequest ...
         // UnbindRequest ::= [APPLICATION 2] NULL (Length)
         super.transitions[LdapStatesEnum.UNBIND_REQUEST_TAG][0x42]    = new GrammarTransition(
@@ -90,6 +89,7 @@
         // LdapMessage ::= ... UnBindRequest ...
         // UnbindRequest ::= [APPLICATION 2] NULL (Value)
         // We have to check that the length is null (the Value is empty). This is the end of this grammar.
+        // We also have to allocate a UnBindRequestPOJO
         super.transitions[LdapStatesEnum.UNBIND_REQUEST_LENGTH][0x42] = new GrammarTransition(
                 LdapStatesEnum.UNBIND_REQUEST_LENGTH, LdapStatesEnum.GRAMMAR_END,
                 new GrammarAction( "Init UnBindRequest" )