Searched defs:children (Results 1 - 13 of 13) sorted by relevance

/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/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/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/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) {
/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/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/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/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/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/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/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...]
H A DStandardContext.java2103 * register the newly added child with JMX. Any children that were
3292 synchronized (children) {
3341 synchronized (children) {
3442 synchronized (children) {
3443 for (Map.Entry<String, Container> e : children.entrySet()) {
3497 for (Map.Entry<String, Container> e : children.entrySet()) {
5062 * @param children Array of wrappers for all currently defined
5066 public void loadOnStartup(Container children[]){
5069 public void loadOnStartup(Container children[]) throws LifecycleException { argument
5074 for (Container aChildren : children) {
[all...]
/glassfish-3.1.2/common/amx-config-impl/src/main/java/org/glassfish/admin/amx/impl/config/
H A DAMXConfigImpl.java389 Parameters for creating one or more children, each of which can (recursively) contain
458 public List<CreateParams> children() { return Collections.unmodifiableList(mChildren); } method in class:AMXConfigImpl.CreateParams
514 verify that no conflicting children already exist.
517 checkForConflicts(final List<CreateParams> children) argument
520 for( final CreateParams params : children )
526 // children of this type exist, check that there is no conflicting child already
542 final List<CreateParams> children,
545 cdebug( children.toString() );
546 checkForConflicts(children);
549 final ChildrenCreator creator = new ChildrenCreator( children, attr
541 createChildren( final List<CreateParams> children, final Map<String,Object> attrs ) argument
[all...]

Completed in 90 milliseconds