You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2006/12/23 20:02:20 UTC

svn commit: r489922 - /directory/trunks/ldapstudio/ldapstudio-dsml-parser/src/main/java/org/apache/directory/ldapstudio/dsmlv2/engine/Dsmlv2Engine.java

Author: ersiner
Date: Sat Dec 23 11:02:19 2006
New Revision: 489922

URL: http://svn.apache.org/viewvc?view=rev&rev=489922
Log:
Some simple javadoc fixes (while still reading code).

Modified:
    directory/trunks/ldapstudio/ldapstudio-dsml-parser/src/main/java/org/apache/directory/ldapstudio/dsmlv2/engine/Dsmlv2Engine.java

Modified: directory/trunks/ldapstudio/ldapstudio-dsml-parser/src/main/java/org/apache/directory/ldapstudio/dsmlv2/engine/Dsmlv2Engine.java
URL: http://svn.apache.org/viewvc/directory/trunks/ldapstudio/ldapstudio-dsml-parser/src/main/java/org/apache/directory/ldapstudio/dsmlv2/engine/Dsmlv2Engine.java?view=diff&rev=489922&r1=489921&r2=489922
==============================================================================
--- directory/trunks/ldapstudio/ldapstudio-dsml-parser/src/main/java/org/apache/directory/ldapstudio/dsmlv2/engine/Dsmlv2Engine.java (original)
+++ directory/trunks/ldapstudio/ldapstudio-dsml-parser/src/main/java/org/apache/directory/ldapstudio/dsmlv2/engine/Dsmlv2Engine.java Sat Dec 23 11:02:19 2006
@@ -131,8 +131,8 @@
 
     /**
      * Processes the file given and return the result of the operations
-     * @param dsmlInput The path to the file
-     * @return The XML reponse in DSMLv2 Format
+     * @param dsmlInput The DSMLv2 formatted request input
+     * @return The XML response in DSMLv2 Format
      * @throws XmlPullParserException
      * @throws FileNotFoundException
      */
@@ -149,7 +149,7 @@
     /**
      * Processes the file given and return the result of the operations
      * @param fileName The path to the file
-     * @return The XML reponse in DSMLv2 Format
+     * @return The XML response in DSMLv2 Format
      * @throws XmlPullParserException
      * @throws FileNotFoundException
      */
@@ -167,7 +167,7 @@
      * Processes the file given and return the result of the operations
      * @param inputStream contains a raw byte input stream of possibly unknown encoding (when inputEncoding is null).
      * @param inputEncoding if not null it MUST be used as encoding for inputStream
-     * @return The XML reponse in DSMLv2 Format
+     * @return The XML response in DSMLv2 Format
      * @throws XmlPullParserException
      * @throws FileNotFoundException
      */
@@ -184,7 +184,7 @@
 
     /**
      * Processes the Request document
-     * @return The XML reponse in DSMLv2 Format
+     * @return The XML response in DSMLv2 Format
      */
     private String processDSML()
     {