mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-15 07:40:29 +08:00
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:
parent
760eb3eabc
commit
c8a90e8163
@ -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
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user