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:
parent
635f468088
commit
9c826022f9
5 changed files with 20 additions and 5 deletions
|
@ -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.
|
||||
|
|
|
@ -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 < str2, 0 if str1 == str2, or
|
||||
* a positive integer if str1 > 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 < obj2, 0 if obj1 == obj2, or
|
||||
* a positive integer if obj1 > obj2.
|
||||
*
|
||||
* @exception ClassCastException If the arguments are not instances
|
||||
* of <code>String</code>.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue