Searched refs:children (Results 1 - 25 of 51) sorted by relevance

123

/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployapi/
H A DTargetModuleIDImpl.java61 private TargetModuleIDImpl[] children = new TargetModuleIDImpl[0]; field in class:TargetModuleIDImpl
75 * @param children TargetModuleIDImpl objects representing the submodules
82 TargetModuleIDImpl[] children) {
86 this.children = children;
91 * and no children.
152 return children;
160 new TargetModuleIDImpl[children.length+1];
162 System.arraycopy(children, 0, newChildren, 0, children
78 TargetModuleIDImpl( TargetImpl target, String moduleID, TargetModuleIDImpl parent, TargetModuleIDImpl[] children) argument
[all...]
/glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/flashlight/impl/
H A DMonitoringRuntimeDataRegistryImpl.java66 protected Map<String, TreeNode> children = field in class:MonitoringRuntimeDataRegistryImpl
75 children.put(name, node);
83 children.remove(name);
87 TreeNode node = (name != null)? children.get(name): null;
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/base/
H A DMBeanTracker.java62 Can supply parents and children of any MBean, used by all AMX implementations.
73 /** maps a parent ObjectName to a Set of children */
203 Set<ObjectName> children = mParentChildren.get(parent);
204 if ( children == null )
206 children = new HashSet<ObjectName>();
207 mParentChildren.put(parent, children);
209 children.add(child);
223 final Set<ObjectName> children = mParentChildren.get(parent);
224 if ( children != null )
226 children
[all...]
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/
H A DClassPathBuilder.java93 File[] children = folder.listFiles(new FileFilter() {
103 if(children==null)
106 for (File child : children) {
125 File[] children = folder.listFiles();
126 if(children==null) return;
127 for (File child : children) {
/glassfish-3.1.2/tests/quicklook/admin/src/test/admin/
H A DJvmOptionTests.java75 String children = GeneralUtils.getValueForTypeFromManifest(man, GeneralUtils.AsadminManifestKeyType.CHILDREN);
76 if (!children.contains(TEST_JOE)) {
77 throw new RuntimeException("deleted http listener: " + TEST_JOE + " exists in the list: " + children);
96 String children = GeneralUtils.getValueForTypeFromManifest(man, GeneralUtils.AsadminManifestKeyType.CHILDREN);
97 if (children.contains(TEST_JOE)) {
98 throw new RuntimeException("deleted http listener: " + TEST_JOE + " exists in the list: " + children);
H A DJdbcConnectionPoolTests.java94 String children = GeneralUtils.getValueForTypeFromManifest(man, GeneralUtils.AsadminManifestKeyType.CHILDREN);
95 if (!children.contains(JAVADB_POOL)) {
96 throw new RuntimeException("deleted http listener: " + JAVADB_POOL + " exists in the list: " + children);
116 String children = GeneralUtils.getValueForTypeFromManifest(man, GeneralUtils.AsadminManifestKeyType.CHILDREN);
117 if (children.contains(JAVADB_POOL)) {
118 throw new RuntimeException("deleted http listener: " + JAVADB_POOL + " exists in the list: " + children);
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/util/
H A DImplUtil.java68 Unload this AMX MBean and all its children.
81 final Set<AMXProxy> children = top.extra().childrenSet();
82 if (children != null) {
84 for (final AMXProxy amx : children) {
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/utils/xml/
H A DXmlObject.java67 private Map<String, Object> children = new HashMap<String, Object>(); field in class:XmlObject
96 children.put(key, child);
98 children.put(key, new XmlObject("Number", (Number)child));
100 children.put(key, (XmlObject)child);
106 children.remove(key);
111 return children.size();
120 for (Map.Entry<String, Object> child : children.entrySet()) {
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DContainerBase.java183 protected Map<String, Container> children = new LinkedHashMap<String, Container>(); field in class:ContainerBase
353 * this container and its children. Child containers will not be invoked
358 * and all its children.
367 * container and its children.
631 * added to the children of a parent Container (after which the name
880 * if supported. Prior to adding this Container to the set of children,
891 * a name unique from that of existing children of this Container
909 synchronized(children) {
910 if (children.get(child.getName()) != null)
925 children
[all...]
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/mbean/
H A DParentChildren.java55 public ParentChildren(final AMXProxy parent, final List<ParentChildren> children) { argument
57 mChildren = children;
81 public List<ParentChildren> children() { method in class:ParentChildren
109 // make a list of all children, grouping by type
110 final List<AMXProxy> children = new ArrayList<AMXProxy>();
114 children.add(amx);
119 for (final AMXProxy child : children) {
H A DAMXImplBase.java214 final Set<ObjectName> children = getMBeanTracker().getChildrenOf(getObjectName());
215 if (children == null) {
219 return CollectionUtil.toArray(children, ObjectName.class);
234 final ObjectName[] children = getChildren();
238 for (final ObjectName child : children) {
539 Map<String, ObjectName> children = null;
541 children = getChildrenMap(type);
542 if (children.keySet().size() != 0) {
547 if (children == null || children
[all...]
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DWARDirContext.java851 * List children as objects.
856 Entry[] children = entry.getChildren();
857 Arrays.sort(children);
860 for (int i = 0; i < children.length; i++) {
861 ZipEntry current = children[i].getEntry();
864 object = new WARDirContext(base, children[i]);
869 (children[i].getName(), object, NamingEntry.ENTRY);
905 protected Entry children[] = new Entry[0]; field in class:WARDirContext.Entry
941 Entry[] newChildren = new Entry[children.length + 1];
942 for (int i = 0; i < children
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DDOMWriter.java205 NodeList children = node.getChildNodes();
206 if ( children != null ) {
207 int len = children.getLength();
209 print(children.item(i));
218 NodeList children = node.getChildNodes();
219 if ( children != null ) {
220 int len = children.getLength();
222 print(children.item(i));
/glassfish-3.1.2/admin/util/src/main/java/org/glassfish/admin/cli/resources/
H A DResourcesXMLParser.java517 NodeList children = nextKid.getChildNodes();
518 generatePropertyElement(persistenceResource, children);
555 NodeList children = nextKid.getChildNodes();
556 generatePropertyElement(customResource, children);
592 NodeList children = nextKid.getChildNodes();
593 generatePropertyElement(jndiResource, children);
622 NodeList children = nextKid.getChildNodes();
624 if (children != null)
626 for (int ii=0; ii<children.getLength(); ii++)
628 if (children
1028 generatePropertyElement(Resource rs, NodeList children) argument
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/glassfish/
H A DAdminCommandResponse.java63 public static final String CHILDREN_TYPE = "children-type";
143 Map<String,Map<String,String>> children = new LinkedHashMap<String,Map<String,String>>();
144 String kidsString = map.get("children");
153 children.put(kid, kidMap);
156 if(children.isEmpty())
159 return children;
/glassfish-3.1.2/tests/quicklook/amx/src/test/amx/
H A DAMXCoreTests.java102 final Set<AMXProxy> children = amx.childrenSet();
103 assert children != null;
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/provider/
H A DActionReportResultJsonProvider.java109 List<MessagePart> children = ar.getTopMessagePart().getChildren();
110 if ((children != null) && (!children.isEmpty())) {
111 result.put("children", processChildren(children));
129 List<MessagePart> children = part.getChildren();
130 if (children.size() > 0) {
131 object.put("children", processChildren(part.getChildren()));
H A DActionReportResultXmlProvider.java89 List<MessagePart> children = ar.getTopMessagePart().getChildren();
90 if ((children != null) && (!children.isEmpty())) {
91 result.put("children", processChildren(children));
103 XmlArray array = new XmlArray("children");
109 List<MessagePart> children = part.getChildren();
110 if (children.size() > 0) {
111 object.put("children", processChildren(part.getChildren()));
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/apiscan/stdapis/
H A DAPIRepository.java301 NodeList children = pkgsNode.getChildNodes();
302 for (int j = 0; j < children.getLength(); j++) {
303 Node next = children.item(j);
317 NodeList children = patternsNode.getChildNodes();
318 for (int j = 0; j < children.getLength(); j++) {
319 Node next = children.item(j);
335 NodeList children = classesNode.getChildNodes();
336 for (int j = 0; j < children.getLength(); j++) {
337 Node next = children.item(j);
/glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/flashlight/datatree/impl/
H A DAbstractTreeNode.java61 protected Map<String, TreeNode> children = field in class:AbstractTreeNode
126 return children.put(newChild.getName(), newChild);
152 * Returns a mutable view of the children
157 return children.values();
161 * Returns a mutable view of the children
167 for (TreeNode child : children.values()) {
176 return ((ConcurrentHashMap) children).elements();
181 return !children.isEmpty();
189 children.remove(child);
232 Set<Map.Entry<String, TreeNode>> entries = children
[all...]
/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/
H A Ddragdrop.js603 tag: 'li', // assumes li children, override with tag: 'tagname'
756 var children = Sortable.findElements(dropon, {tag: droponOptions.tag, only: droponOptions.only});
759 if(children) {
762 for (index = 0; index < children.length; index += 1) {
763 if (offset - Element.offsetSize (children[index], droponOptions.overlap) >= 0) {
764 offset -= Element.offsetSize (children[index], droponOptions.overlap);
765 } else if (offset - (Element.offsetSize (children[index], droponOptions.overlap) / 2) >= 0) {
766 child = index + 1 < children.length ? children[index + 1] : null;
769 child = children[inde
[all...]
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/
H A DActionReport.java150 List<MessagePart> children = new ArrayList<MessagePart>(); field in class:ActionReport.MessagePart
154 children.add(newPart);
195 return children;
/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/stats/lb/
H A DClusterStats.java155 org.w3c.dom.NodeList children = node.getChildNodes();
156 for (int i = 0, size = children.getLength(); i < size; ++i) {
157 org.w3c.dom.Node childNode = children.item(i);
212 java.util.List children = new java.util.LinkedList();
213 childBeans(recursive, children);
214 com.sun.enterprise.admin.monitor.stats.lb.CommonBean[] result = new com.sun.enterprise.admin.monitor.stats.lb.CommonBean[children.size()];
215 return (com.sun.enterprise.admin.monitor.stats.lb.CommonBean[]) children.toArray(result);
/glassfish-3.1.2/tests/quicklook/web/jruby/helloapp/public/javascripts/
H A Ddragdrop.js627 tag: 'li', // assumes li children, override with tag: 'tagname'
787 var children = Sortable.findElements(dropon, {tag: droponOptions.tag, only: droponOptions.only});
790 if(children) {
793 for (index = 0; index < children.length; index += 1) {
794 if (offset - Element.offsetSize (children[index], droponOptions.overlap) >= 0) {
795 offset -= Element.offsetSize (children[index], droponOptions.overlap);
796 } else if (offset - (Element.offsetSize (children[index], droponOptions.overlap) / 2) >= 0) {
797 child = index + 1 < children.length ? children[index + 1] : null;
800 child = children[inde
[all...]
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/core/proxy/
H A DAMXProxyHandler.java293 private static final String METHOD_CHILDREN = "children";
607 final ObjectName[] children = new ObjectName[ childrenList.size() ];
608 childrenList.toArray( children );
610 return children;
1016 Returns an array of children, including an empty array if there are none, but children
1017 are possible. Returns null if children are not possible.
1086 final ObjectName[] children = getChildren();
1087 if (children == null)
1092 final Set<AMXProxy> childrenSet = childrenSet(children);
[all...]

Completed in 409 milliseconds

123