< prev index next >

src/java.activation/share/classes/com/sun/activation/registries/MailcapTokenizer.java

Print this page

        

@@ -40,11 +40,11 @@
     public static final int EQUALS_TOKEN = '=';
 
     /**
      *  Constructor
      *
-     *  @parameter  inputString the string to tokenize
+     *  @param  inputString the string to tokenize
      */
     public MailcapTokenizer(String inputString) {
         data = inputString;
         dataIndex = 0;
         dataLength = inputString.length();

@@ -71,11 +71,11 @@
     }
 
     /**
      *  Retrieve current token.
      *
-     *  @returns    The current token value
+     *  @return    The current token value
      */
     public int getCurrentToken() {
         return currentToken;
     }
 

@@ -113,19 +113,19 @@
     }
 
     /*
      *  Retrieve current token value.
      *
-     *  @returns    A String containing the current token value
+     *  @return    A String containing the current token value
      */
     public String getCurrentTokenValue() {
         return currentTokenValue;
     }
     /*
      *  Process the next token.
      *
-     *  @returns    the next token
+     *  @return    the next token
      */
     public int nextToken() {
         if (dataIndex < dataLength) {
             //  skip white space
             while ((dataIndex < dataLength) &&
< prev index next >