classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] Patch: FYI: Name -vs- 1.5


From: Tom Tromey
Subject: [cp-patches] Patch: FYI: Name -vs- 1.5
Date: 15 Sep 2005 17:03:56 -0600

I'm checking this in.

In 1.5, javax.naming.Name is Comparable.
It already declares compareTo in 1.4, so this does not affect source
or binary compatibility.

Tom

Index: ChangeLog
from  Tom Tromey  <address@hidden>

        * javax/naming/Name.java: Extends Comparable.

Index: javax/naming/Name.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/naming/Name.java,v
retrieving revision 1.6
diff -u -r1.6 Name.java
--- javax/naming/Name.java 2 Jul 2005 20:32:45 -0000 1.6
+++ javax/naming/Name.java 15 Sep 2005 23:08:24 -0000
@@ -1,5 +1,5 @@
 /* Name.java -- Name build up from different components
-   Copyright (C) 2000, 2001, 2004 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2004, 2005 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -60,7 +60,7 @@
  * @author Anthony Green (address@hidden)
  * @author Mark Wielaard (address@hidden)
  */
-public interface Name extends Cloneable, Serializable
+public interface Name extends Cloneable, Serializable, Comparable
 {
   long serialVersionUID = -3617482732056931635L;
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]