Searched refs:childName (Results 1 - 7 of 7) sorted by relevance

/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/common/internal-api/src/main/java/org/glassfish/flashlight/datatree/
H A DTreeNode.java132 public TreeNode getChild(String childName); argument
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/
H A DV2DottedNameSupport.java80 for (String childName : elementNames) {
87 if (parent.model.findIgnoreCase(childName)!=null) {
89 if (parent.model.getElement(childName).isLeaf())
91 collection = parent.model.getElement(childName).isCollection();
95 for (Dom child : parent.nodeElements(childName)) {
97 String newPrefix = (prefix==null?childName:prefix+"."+childName);
/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))
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/util/
H A DRestResponse.java253 String childName;
262 childName = child.getNodeName();
263 if (result.containsKey(childName)) {
265 childList = (List<Map<String, Object>>) result.get(childName);
269 result.put(childName, childList);
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DWARDirContext.java798 Name childName = new CompositeName(name.substring(0, currentPos));
803 Entry child = treeLookup(childName);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/servlets/
H A DWebdavServlet.java1950 String childName = path;
1951 if (!childName.equals("/"))
1952 childName += "/";
1953 childName += ncPair.getName();
1955 if (isLocked(childName, ifHeader + lockTokenHeader)) {
1957 errorList.put(childName, Integer.valueOf(WebdavStatus.SC_LOCKED));
1962 Object object = resources.lookup(childName);
1964 deleteCollection(req, resources, childName, errorList);
1968 resources.unbind(childName);
1974 (childName, Intege
[all...]

Completed in 25 milliseconds