jaxws/src/java.activation/share/classes/com/sun/activation/registries/MailcapTokenizer.java
changeset 31501 1b48499c9e1c
parent 25871 b80b84e87032
--- a/jaxws/src/java.activation/share/classes/com/sun/activation/registries/MailcapTokenizer.java	Wed Jul 05 20:39:43 2017 +0200
+++ b/jaxws/src/java.activation/share/classes/com/sun/activation/registries/MailcapTokenizer.java	Thu Jul 02 18:04:32 2015 +0400
@@ -42,7 +42,7 @@
     /**
      *  Constructor
      *
-     *  @parameter  inputString the string to tokenize
+     *  @param  inputString the string to tokenize
      */
     public MailcapTokenizer(String inputString) {
         data = inputString;
@@ -73,7 +73,7 @@
     /**
      *  Retrieve current token.
      *
-     *  @returns    The current token value
+     *  @return    The current token value
      */
     public int getCurrentToken() {
         return currentToken;
@@ -115,7 +115,7 @@
     /*
      *  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;
@@ -123,7 +123,7 @@
     /*
      *  Process the next token.
      *
-     *  @returns    the next token
+     *  @return    the next token
      */
     public int nextToken() {
         if (dataIndex < dataLength) {