Searched defs:childName (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/flashlight/datatree/
H A DTreeNode.java132 public TreeNode getChild(String childName); argument
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/util/
H A DObjectNameBuilder.java128 final String childName) {
129 return buildChildObjectName(mMBeanServer, parent, type, childName);
134 final String childName) {
135 return buildChildObjectName(mMBeanServer, mParent, type, childName);
160 final String childName) {
161 //debug( "ObjectNameBuilder.buildChildObjectName(): type = " + type + ", name = " + childName + ", parent = " + parent );
162 String props = Util.makeRequiredProps(type, childName);
166 final String path = PathnameParser.path(parentPath, type, childName);
125 buildChildObjectName( final ObjectName parent, final String type, final String childName) argument
132 buildChildObjectName( final String type, final String childName) argument
156 buildChildObjectName( final MBeanServer server, final ObjectName parent, final String type, final String childName) argument
/glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/flashlight/datatree/impl/
H A DAbstractTreeNode.java223 // JIRA 15964 -- what happened was that the childName was "xxx.yyy"
227 public TreeNode getChild(String childName) { argument
228 if (childName == null)
231 childName = normalizeDots(childName);
238 if (childName.equals(entryKey) || childName.equals(normalizedEntryKey))

Completed in 326 milliseconds