BeanContextChildSupport.java: Added serialVersionUID.

2002-10-04  Michael Koch  <konqueror@gmx.de>

	* java/beans/beancontext/BeanContextChildSupport.java:
	Added serialVersionUID.
	* java/text/Collator.java: (compare): Made documentation HTML-aware.
	* javax/naming/BinaryRefAddr.java: Added serialVersionUID.
	* javax/naming/Name.java: Added serialVersionUID.

From-SVN: r57813
This commit is contained in:
Michael Koch 2002-10-04 08:48:03 +00:00 committed by Michael Koch
parent 635f468088
commit 9c826022f9
5 changed files with 20 additions and 5 deletions

View file

@ -153,8 +153,8 @@ public abstract class Collator implements Comparator, Cloneable
* @param str1 The first object to compare
* @param str2 The second object to compare
*
* @return A negative integer if str1 < str2, 0 if str1 == str2, or
* a positive integer if str1 > str2.
* @return A negative integer if str1 &lt; str2, 0 if str1 == str2, or
* a positive integer if str1 &gt; str2.
*/
public abstract int compare (String source, String target);
@ -167,8 +167,8 @@ public abstract class Collator implements Comparator, Cloneable
* @param obj1 The first object to compare
* @param obj2 The second object to compare
*
* @return A negative integer if obj1 < obj2, 0 if obj1 == obj2, or
* a positive integer if obj1 > obj2.
* @return A negative integer if obj1 &lt; obj2, 0 if obj1 == obj2, or
* a positive integer if obj1 &gt; obj2.
*
* @exception ClassCastException If the arguments are not instances
* of <code>String</code>.