src/share/classes/java/awt/TextComponent.java

Print this page

        

@@ -969,21 +969,21 @@
          * Determines the bounding box of the character at the given
          * index into the string.  The bounds are returned in local
          * coordinates.  If the index is invalid a null rectangle
          * is returned.
          *
-         * @param i the index into the String >= 0
+         * @param i the index into the String >= 0
          * @return the screen coordinates of the character's bounding box
          */
         public Rectangle getCharacterBounds(int i) {
             return TextComponent.this.getCharacterBounds(i);
         }
 
         /**
          * Returns the number of characters (valid indicies)
          *
-         * @return the number of characters >= 0
+         * @return the number of characters >= 0
          */
         public int getCharCount() {
             return TextComponent.this.getText().length();
         }
 

@@ -1015,11 +1015,11 @@
          * If there is no selection, but there is
          * a caret, the start and end offsets will be the same.
          * Return 0 if the text is empty, or the caret position
          * if no selection.
          *
-         * @return the index into the text of the start of the selection >= 0
+         * @return the index into the text of the start of the selection >= 0
          */
         public int getSelectionStart() {
             return TextComponent.this.getSelectionStart();
         }
 

@@ -1028,11 +1028,11 @@
          * If there is no selection, but there is
          * a caret, the start and end offsets will be the same.
          * Return 0 if the text is empty, or the caret position
          * if no selection.
          *
-         * @return the index into teh text of the end of the selection >= 0
+         * @return the index into teh text of the end of the selection >= 0
          */
         public int getSelectionEnd() {
             return TextComponent.this.getSelectionEnd();
         }
 

@@ -1053,11 +1053,11 @@
         /**
          * Returns the String at a given index.
          *
          * @param part the AccessibleText.CHARACTER, AccessibleText.WORD,
          * or AccessibleText.SENTENCE to retrieve
-         * @param index an index within the text >= 0
+         * @param index an index within the text >= 0
          * @return the letter, word, or sentence,
          *   null for an invalid index or part
          */
         public String getAtIndex(int part, int index) {
             if (index < 0 || index >= TextComponent.this.getText().length()) {

@@ -1119,11 +1119,11 @@
         /**
          * Returns the String after a given index.
          *
          * @param part the AccessibleText.CHARACTER, AccessibleText.WORD,
          * or AccessibleText.SENTENCE to retrieve
-         * @param index an index within the text >= 0
+         * @param index an index within the text &gt;= 0
          * @return the letter, word, or sentence, null for an invalid
          *  index or part
          */
         public String getAfterIndex(int part, int index) {
             if (index < 0 || index >= TextComponent.this.getText().length()) {

@@ -1172,11 +1172,11 @@
         /**
          * Returns the String before a given index.
          *
          * @param part the AccessibleText.CHARACTER, AccessibleText.WORD,
          *   or AccessibleText.SENTENCE to retrieve
-         * @param index an index within the text >= 0
+         * @param index an index within the text &gt;= 0
          * @return the letter, word, or sentence, null for an invalid index
          *  or part
          */
         public String getBeforeIndex(int part, int index) {
             if (index < 0 || index > TextComponent.this.getText().length()-1) {