Commit d3d40e23 by Michael Koch Committed by Michael Koch

2003-04-30 Michael Koch <konqueror@gmx.de>

	* java/text/BreakIterator.java
	(clone): New method.

From-SVN: r66289
parent 70ff9d90
2003-04-30 Michael Koch <konqueror@gmx.de>
* java/text/BreakIterator.java
(clone): New method.
2003-04-30 Michael Koch <konqueror@gmx.de>
* java/text/CollationElementIterator.java,
java/text/CollationKey.java,
java/text/RuleBasedCollator.java:
......
......@@ -77,6 +77,21 @@ public abstract class BreakIterator implements Cloneable
}
/**
* Create a clone of this object.
*/
public Object clone ()
{
try
{
return super.clone();
}
catch (CloneNotSupportedException e)
{
return null;
}
}
/**
* This method returns the index of the current text element boundary.
*
* @return The current text boundary.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment