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

@ -1,3 +1,11 @@
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.
2002-10-03 Adam Megacz <adam@xwt.org>
* natNetworkInterface.cc (getRealNetworkInterfaces): ifdef out

View File

@ -60,7 +60,11 @@ import java.io.Serializable;
* @see java.beans.beancontext.BeanContextChild
*/
public class BeanContextChildSupport implements BeanContextChild, BeanContextServicesListener, Serializable {
public class BeanContextChildSupport
implements BeanContextChild, BeanContextServicesListener, Serializable
{
static final long serialVersionUID = 6328947014421475877L;
/**
* The peer on which to perform <code>set</code> actions.
* This is here so that this class can be used as a peer.

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>.

View File

@ -50,6 +50,7 @@ import java.util.Arrays;
*/
public class BinaryRefAddr extends RefAddr
{
static final long serialVersionUID = -3415254970957330361L;
/**
* The possibly null content of this RefAddr.

View File

@ -62,6 +62,8 @@ import java.io.Serializable;
*/
public interface Name extends Cloneable, Serializable
{
static final long serialVersionUID = -3617482732056931635L;
/**
* Returns the number of components of this <code>Name</code>.
* The returned number can be zero.