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 D | TreeNode.java | 132 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 D | ObjectNameBuilder.java | 128 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 D | AbstractTreeNode.java | 223 // 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