You are viewing a plain text version of this content. The canonical link for it is here.
Posted to woden-dev@ws.apache.org by jk...@apache.org on 2007/03/30 17:46:14 UTC

svn commit: r524137 - /incubator/woden/trunk/java/src/org/apache/woden/wsdl20/extensions/http/HTTPLocation.java

Author: jkaputin
Date: Fri Mar 30 08:46:13 2007
New Revision: 524137

URL: http://svn.apache.org/viewvc?view=rev&rev=524137
Log:
Javadoc improvements.

Modified:
    incubator/woden/trunk/java/src/org/apache/woden/wsdl20/extensions/http/HTTPLocation.java

Modified: incubator/woden/trunk/java/src/org/apache/woden/wsdl20/extensions/http/HTTPLocation.java
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/src/org/apache/woden/wsdl20/extensions/http/HTTPLocation.java?view=diff&rev=524137&r1=524136&r2=524137
==============================================================================
--- incubator/woden/trunk/java/src/org/apache/woden/wsdl20/extensions/http/HTTPLocation.java (original)
+++ incubator/woden/trunk/java/src/org/apache/woden/wsdl20/extensions/http/HTTPLocation.java Fri Mar 30 08:46:13 2007
@@ -121,7 +121,7 @@
     }
     
     /**
-     * TODO javadoc ... created for WODEN-148
+     * TODO javadoc. Method created for WODEN-148
      * 
      * @return true if the format of the original HTTP location string is valid
      */
@@ -130,7 +130,7 @@
     }
     
     /**
-     * TODO javadoc ... Created for WODEN-148
+     * TODO javadoc. Method created for WODEN-148
      * 
      * @return the original String value of the HTTP location, 
      *         prior to any template substitution
@@ -209,8 +209,8 @@
     }
     
     /**
-     * Return the templates in this HTTP location that appear in the path
-     * (i.e. before the first occurrence of "?").
+     * Return the templates in this HTTP location that appear in the path.
+     * That is, before the first occurrence of "?".
      * 
      * @return an array of HTTPLocationTemplate objects
      */
@@ -234,8 +234,8 @@
     }
     
     /**
-     * Return the templates in this HTTP location that appear in the query
-     * (i.e. after the first occurrence of "?").
+     * Return the templates in this HTTP location that appear in the query.
+     * That is, after the first occurrence of "?".
      * 
      * @return an array of HTTPLocationTemplate objects
      */
@@ -359,8 +359,8 @@
     }
     
     /**
-     * Return the first template from the path with the specified name
-     * (i.e. before the first occurrence of "?").
+     * Return the first template from the path with the specified name.
+     * That is, before the first occurrence of "?".
      */
     public HTTPLocationTemplate getTemplateInPath(String name) {
         HTTPLocationTemplate namedTemplate = null;
@@ -377,8 +377,8 @@
     }
     
     /**
-     * Return an array of templates from the path with the specified name
-     * (i.e. before the first occurrence of "?").  
+     * Return an array of templates from the path with the specified name.
+     * That is, before the first occurrence of "?".  
      */
     public HTTPLocationTemplate[] getTemplatesInPath(String name) {
         List namedTemplates = new Vector();
@@ -397,8 +397,8 @@
     }
     
     /**
-     * Return the first template from the query with the specified name
-     * (i.e. after the first occurrence of "?").
+     * Return the first template from the query with the specified name.
+     * That is, after the first occurrence of "?".
      */
     public HTTPLocationTemplate getTemplateInQuery(String name) {
         HTTPLocationTemplate namedTemplate = null;
@@ -415,8 +415,8 @@
     }
     
     /**
-     * Return an array of templates from the query with the specified name
-     * (i.e. after the first occurrence of "?").
+     * Return an array of templates from the query with the specified name.
+     * That is, after the first occurrence of "?".
      */
     public HTTPLocationTemplate[] getTemplatesInQuery(String name) {
         List namedTemplates = new Vector();



---------------------------------------------------------------------
To unsubscribe, e-mail: woden-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: woden-dev-help@ws.apache.org