You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by nd...@apache.org on 2006/07/03 20:51:40 UTC

svn commit: r418826 - /incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/BreakIterator.java

Author: ndbeyer
Date: Mon Jul  3 11:51:40 2006
New Revision: 418826

URL: http://svn.apache.org/viewvc?rev=418826&view=rev
Log:
Cleanup; documentation and braces

Modified:
    incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/BreakIterator.java

Modified: incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/BreakIterator.java
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/BreakIterator.java?rev=418826&r1=418825&r2=418826&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/BreakIterator.java (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/text/src/main/java/java/text/BreakIterator.java Mon Jul  3 11:51:40 2006
@@ -50,7 +50,7 @@
 
 	/*
 	 * -----------------------------------------------------------------------
-	 * constantants
+	 * constants
 	 * -----------------------------------------------------------------------
 	 */
 	/**
@@ -68,7 +68,7 @@
 	 * variables
 	 * -----------------------------------------------------------------------
 	 */
-	// the wrapped icu implementation
+	// the wrapped ICU implementation
 	com.ibm.icu.text.BreakIterator wrapped;
 
 	/*
@@ -126,8 +126,9 @@
 	 *         given locale.
 	 */
 	public static BreakIterator getCharacterInstance(Locale where) {
-	    if (where == null)
-	        throw new NullPointerException();
+	    if (where == null) {
+            throw new NullPointerException();
+        }
 
 	    return new RuleBasedBreakIterator(com.ibm.icu.text.BreakIterator
 	            .getCharacterInstance(where));
@@ -155,18 +156,19 @@
 	 *         given locale.
 	 */
 	public static BreakIterator getLineInstance(Locale where) {
-	    if (where == null)
-	        throw new NullPointerException();
+	    if (where == null) {
+            throw new NullPointerException();
+        }
 
 	    return new RuleBasedBreakIterator(com.ibm.icu.text.BreakIterator
 	            .getLineInstance(where));
 	}
 
 	/**
-	 * Return a new instance of BreakIterator used to iterate sentense-breaks
+	 * Return a new instance of BreakIterator used to iterate sentence-breaks
 	 * using default locale.
 	 * 
-	 * @return a new instance of BreakIterator used to iterate sentense-breaks
+	 * @return a new instance of BreakIterator used to iterate sentence-breaks
 	 *         using default locale.
 	 */
 	public static BreakIterator getSentenceInstance() {
@@ -175,17 +177,18 @@
 	}
 
 	/**
-	 * Return a new instance of BreakIterator used to iterate sentense-breaks
+	 * Return a new instance of BreakIterator used to iterate sentence-breaks
 	 * using given locale.
 	 * 
 	 * @param where
 	 *            the given locale
-	 * @return a new instance of BreakIterator used to iterate sentense-breaks
+	 * @return a new instance of BreakIterator used to iterate sentence-breaks
 	 *         using given locale.
 	 */
 	public static BreakIterator getSentenceInstance(Locale where) {
-	    if (where == null)
-	        throw new NullPointerException();
+	    if (where == null) {
+            throw new NullPointerException();
+        }
 
 	    return new RuleBasedBreakIterator(com.ibm.icu.text.BreakIterator
 	            .getSentenceInstance(where));
@@ -213,8 +216,9 @@
 	 *         given locale.
 	 */
 	public static BreakIterator getWordInstance(Locale where) {
-	    if (where == null)
-	        throw new NullPointerException();
+	    if (where == null) {
+            throw new NullPointerException();
+        }
 
 	    return new RuleBasedBreakIterator(com.ibm.icu.text.BreakIterator
 	            .getWordInstance(where));
@@ -228,15 +232,15 @@
 	 * 
 	 * @param offset
 	 *            the given offset to check
-	 * @return true if the given offset is a boudary postion
+	 * @return true if the given offset is a boundary position
 	 */
 	public boolean isBoundary(int offset) {
 		return wrapped.isBoundary(offset);
 	}
 
 	/**
-	 * Return the postion of last boundary precede the given offset, and set
-	 * current postion to returned value, or <code>DONE</code> if the given
+	 * Return the position of last boundary precede the given offset, and set
+	 * current position to returned value, or <code>DONE</code> if the given
 	 * offset specifies the starting position.
 	 * <p>
 	 * <code>IllegalArgumentException</code> will be thrown if given offset is
@@ -245,7 +249,7 @@
 	 * 
 	 * @param offset
 	 *            the given start position to be searched for
-	 * @return the postion of last boundary precede the given offset
+	 * @return the position of last boundary precede the given offset
 	 */
 	public int preceding(int offset) {
 		return wrapped.preceding(offset);
@@ -276,7 +280,7 @@
 
 	/**
 	 * Set this iterator's current position to the first boundary, and return
-	 * this postion.
+	 * this position.
 	 * 
 	 * @return the position of first boundary
 	 */
@@ -299,7 +303,7 @@
 
 	/**
 	 * Return a <code>CharacterIterator</code> which represents the text being
-	 * analyzed. Please note that the returned value is probablly the internal
+	 * analyzed. Please note that the returned value is probably the internal
 	 * iterator used by this object, so that if the invoker want to modify the
 	 * status of the returned iterator, a clone operation at first is
 	 * recommended.
@@ -311,7 +315,7 @@
 
 	/**
 	 * Set this iterator's current position to the last boundary, and return
-	 * this postion.
+	 * this position.
 	 * 
 	 * @return the position of last boundary
 	 */
@@ -319,7 +323,7 @@
 
 	/**
 	 * Set this iterator's current position to the next boundary after current
-	 * position, and return this postion. Return <code>DONE</code> if no
+	 * position, and return this position. Return <code>DONE</code> if no
 	 * boundary found after current position.
 	 * 
 	 * @return the position of last boundary
@@ -328,7 +332,7 @@
 
 	/**
 	 * Set this iterator's current position to the next boundary after the given
-	 * position, and return this postion. Return <code>DONE</code> if no
+	 * position, and return this position. Return <code>DONE</code> if no
 	 * boundary found after the given position.
 	 * 
 	 * @param n
@@ -339,7 +343,7 @@
 
 	/**
 	 * Set this iterator's current position to the previous boundary before
-	 * current position, and return this postion. Return <code>DONE</code> if
+	 * current position, and return this position. Return <code>DONE</code> if
 	 * no boundary found before current position.
 	 * 
 	 * @return the position of last boundary
@@ -400,7 +404,7 @@
 	}
 
 	/**
-	 * Get a ing value from the given byte array, start from given offset.
+	 * Get an int value from the given byte array, start from given offset.
 	 * 
 	 * @param buf	the bytes to be converted
 	 * @param offset	the start position of conversion