2007-02-14 Gary Benson <gbenson@redhat.com>

* javax/management/ObjectName.java
	(toString): Return this item's canonical name.

From-SVN: r121989
This commit is contained in:
Gary Benson 2007-02-15 09:02:38 +00:00 committed by Gary Benson
parent 760eb3eabc
commit c8a90e8163
3 changed files with 13 additions and 9 deletions

View File

@ -1,3 +1,8 @@
2007-02-14 Gary Benson <gbenson@redhat.com>
* javax/management/ObjectName.java
(toString): Return this item's canonical name.
2007-02-12 Tom Tromey <tromey@redhat.com>
* java/util/Collections.java (UnmodifiableMap.toArray): Imported

View File

@ -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();
}
/**