aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/javax/management
diff options
context:
space:
mode:
authorGary Benson <gbenson@redhat.com>2007-02-15 09:02:38 +0000
committerGary Benson <gary@gcc.gnu.org>2007-02-15 09:02:38 +0000
commitc8a90e81637883d0ca883b094962ef8a738e4220 (patch)
tree36db14a8652a87213605e219b163f3fc6d33729b /libjava/classpath/javax/management
parent760eb3eabc76ac60b1f2761cf74d666663f289a0 (diff)
downloadgcc-c8a90e81637883d0ca883b094962ef8a738e4220.zip
gcc-c8a90e81637883d0ca883b094962ef8a738e4220.tar.gz
gcc-c8a90e81637883d0ca883b094962ef8a738e4220.tar.bz2
2007-02-14 Gary Benson <gbenson@redhat.com>
* javax/management/ObjectName.java (toString): Return this item's canonical name. From-SVN: r121989
Diffstat (limited to 'libjava/classpath/javax/management')
-rw-r--r--libjava/classpath/javax/management/ObjectName.java17
1 files changed, 8 insertions, 9 deletions
diff --git a/libjava/classpath/javax/management/ObjectName.java b/libjava/classpath/javax/management/ObjectName.java
index 573b984..0b18c01 100644
--- a/libjava/classpath/javax/management/ObjectName.java
+++ b/libjava/classpath/javax/management/ObjectName.java
@@ -1,5 +1,5 @@
/* ObjectName.java -- Represent the name of a bean, or a pattern for a name.
- Copyright (C) 2006 Free Software Foundation, Inc.
+ Copyright (C) 2006, 2007 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -716,19 +716,18 @@ public class ObjectName
/**
* Returns a textual representation of the object name.
- * The format is unspecified, but it should be expected that
- * two equivalent object names will return the same string
- * from this method.
+ *
+ * <p>The format is unspecified beyond that equivalent object
+ * names will return the same string from this method, but note
+ * that Tomcat depends on the string returned by this method
+ * being a valid textual representation of the object name and
+ * will fail to start if it is not.
*
* @return a textual representation of the object name.
*/
public String toString()
{
- return getClass().toString() +
- "[domain = " + domain +
- ",properties = " + properties +
- ",propertyPattern = " + propertyPattern +
- "]";
+ return getCanonicalName();
}
/**