Searched defs:children (Results 26 - 50 of 62) sorted by relevance

123

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DAbstractTreeTableModel.java85 Object[] children) {
96 childIndices, children);
111 Object[] children) {
122 childIndices, children);
137 Object[] children) {
148 childIndices, children);
163 Object[] children) {
174 childIndices, children);
83 fireTreeNodesChanged(Object source, Object[] path, int[] childIndices, Object[] children) argument
109 fireTreeNodesInserted(Object source, Object[] path, int[] childIndices, Object[] children) argument
135 fireTreeNodesRemoved(Object source, Object[] path, int[] childIndices, Object[] children) argument
161 fireTreeStructureChanged(Object source, Object[] path, int[] childIndices, Object[] children) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DSimpleNode.java37 protected Node[] children; field in class:SimpleNode
68 if (children == null) {
69 children = new Node[i + 1];
70 } else if (i >= children.length) {
72 System.arraycopy(children, 0, c, 0, children.length);
73 children = c;
75 children[i] = n;
79 return children[i];
83 return (children
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibOid.java167 // Some children variable or subobject is being querried
172 // XXXX zzzz : what about null children?
272 // If a node has several children, let assume that we are one step to
282 children.firstElement().getRootOid(result);
326 children.insertElementAt(node,pos);
333 children.insertElementAt(child, pos);
354 children.insertElementAt(node, newPos);
360 children.insertElementAt(child, newPos);
367 SnmpMibNode child= children.elementAt(pos);
376 // the actual group-node and export the children fro
531 private NonSyncVector<SnmpMibNode> children = new NonSyncVector<SnmpMibNode>(1); field in class:SnmpMibOid
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpMibTree.java128 if (children.size() == 0) {
129 // In this case, the node does not have any children. So no point to
165 if (children == null) {
168 for(Enumeration e= children.elements(); e.hasMoreElements(); ) {
189 for(Enumeration<TreeNode> e= children.elements();
199 children.removeElement(e.nextElement());
231 children.addElement(child);
250 for(Enumeration e= children.elements(); e.hasMoreElements(); ) {
262 private Vector<TreeNode> children= new Vector<TreeNode>(); field in class:SnmpMibTree.TreeNode
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DContextEnumerator.java39 private NamingEnumeration children = null; field in class:ContextEnumerator
68 // No need to list children if we're only searching object
70 children = getImmediateChildren(context);
131 return children != null && children.hasMore();
135 Binding oldBinding = ((Binding)children.next());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/jaxb/
H A DJAXBType.java90 public void setWrapperChildren(List<JAXBProperty> children) { argument
91 wrapperChildren = children;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DArrayERProperty.java89 public ItemsLoader(Accessor acc, Lister lister, QNameMap<ChildLoader> children) { argument
93 this.children = children;
100 // inherit the target so that our children can access its target
103 // start it now, so that even if there's no children we can still return empty collection
107 private final QNameMap<ChildLoader> children; field in class:ArrayERProperty.ItemsLoader
111 ChildLoader child = children.get(ea.uri,ea.local);
113 child = children.get(CATCH_ALL);
130 return children.keySet();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DBodyBuilder.java146 List<ParameterImpl> children = wp.getWrapperChildren();
148 indices = new int[children.size()];
149 getters = new ValueGetter[children.size()];
151 ParameterImpl p = children.get(i);
181 List<ParameterImpl> children = wp.getWrapperChildren();
183 accessors = new RawAccessor[children.size()];
185 ParameterImpl p = children.get(i);
247 private final List<ParameterImpl> children; field in class:BodyBuilder.RpcLit
257 this.children = wp.getWrapperChildren();
259 parameterBridges = new Bridge[children
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DAbstractInstanceResolver.java123 private final InjectionPlan<T,R>[] children; field in class:AbstractInstanceResolver.Compositor
125 public Compositor(Collection<InjectionPlan<T,R>> children) { argument
126 this.children = children.toArray(new InjectionPlan[children.size()]);
130 for (InjectionPlan<T,R> plan : children)
136 for (InjectionPlan<T, R> plan : children)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DEndpointResponseMessageBuilder.java149 List<ParameterImpl> children = wp.getWrapperChildren();
151 indices = new int[children.size()];
152 getters = new ValueGetter[children.size()];
154 ParameterImpl p = children.get(i);
186 List<ParameterImpl> children = wp.getWrapperChildren();
188 accessors = new RawAccessor[children.size()];
190 ParameterImpl p = children.get(i);
255 private final List<ParameterImpl> children; field in class:EndpointResponseMessageBuilder.RpcLit
265 this.children = wp.getWrapperChildren();
267 parameterBridges = new Bridge[children
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DModelGroupImpl.java52 this.children = _children;
56 for( int i=children.length-1; i>=0; i-- )
57 if(children[i]==null)
61 private final ParticleImpl[] children; field in class:ModelGroupImpl
62 public ParticleImpl getChild( int idx ) { return children[idx]; }
63 public int getSize() { return children.length; }
65 public ParticleImpl[] getChildren() { return children; }
73 for (ParticleImpl p : children)
78 return Arrays.asList((XSParticle[])children).iterator();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DDFAContentModel.java273 * A value of -1 in the children array indicates a PCDATA node. All other
278 * @param children The children of this element. Each integer is an index within
282 * @param offset Offset into the array where the children starts.
283 * @param length The number of entries in the <code>children</code> array.
287 * of children, then the specified children are valid but additional
291 public int validate(QName[] children, int offset, int length) { argument
298 // so a failure is given if no children present.
306 // Therefore, if there are no children, w
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DCompositeView.java85 children = new View[1];
91 * Loads all of the children to initialize the view.
124 * method if this view does not already have children.
125 * The children should not be loaded in the
129 * If this view has children (the view is being moved
160 return children[n];
177 * to indicate no children are being added (useful to remove)
187 if (children[i].getParent() == this) {
190 children[i].setParent(null);
192 children[
787 private View[] children; field in class:CompositeView
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeModel.java60 * node if it does not allow children. (If it allows
61 * children, it is not a leaf node, even if no children
66 * children is a leaf node, and any node may acquire
67 * children.
77 * Creates a tree in which any node can have children.
88 * Creates a tree specifying whether any node can have children,
89 * or whether only certain nodes can have children.
93 * have children, true if each node is asked to see if
94 * it can have children
472 fireTreeNodesChanged(Object source, Object[] path, int[] childIndices, Object[] children) argument
503 fireTreeNodesInserted(Object source, Object[] path, int[] childIndices, Object[] children) argument
534 fireTreeNodesRemoved(Object source, Object[] path, int[] childIndices, Object[] children) argument
566 fireTreeStructureChanged(Object source, Object[] path, int[] childIndices, Object[] children) argument
[all...]
H A DDefaultMutableTreeNode.java43 * A tree node may have at most one parent and 0 or more children.
45 * node's parent and children and also operations for examining the tree that
48 * parents and children. A node with no parent is the root of its tree; a
49 * node with no children is a leaf. A tree may consist of many subtrees,
94 * of a leaf node's children is requested.
102 /** array of children, may be null if this node has no children */
103 protected Vector children; field in class:DefaultMutableTreeNode
108 /** true if the node is able to have children */
113 * Creates a tree node that has no parent and no children, bu
290 public Enumeration children() { method in class:DefaultMutableTreeNode
1334 protected Enumeration<TreeNode> children; field in class:DefaultMutableTreeNode.PostorderEnumeration
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DSourceTreeTool.java159 private SourceTreeNode[] children; field in class:SourceTreeTool.SourceTreeNode
185 String[] files = sourcePath.children(relativePath, filter);
186 children = new SourceTreeNode[files.length];
194 children[i] =
200 children = null;
214 return children[childIndex];
218 * Returns the number of children <code>TreeNode</code>s the receiver
224 return children.length;
236 * Returns the index of <code>node</code> in the receivers children.
243 for (int i = 0; i < children
272 public Enumeration children() { method in class:SourceTreeTool.SourceTreeNode
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DPaletteBuilder.java213 return findColorIndex(aNode.children[childIndex], aColor);
285 if (aNode.children[branchIndex] == null) {
292 aNode.children[branchIndex] =
293 insertNode(aNode.children[branchIndex], aColor, aLevel + 1);
341 if (aNode.children[i] != null) {
342 index = findPaletteEntry(aNode.children[i], index,
410 thisNode.children[i] = freeTree(thisNode.children[i]);
420 aNode.children[i] = freeTree(aNode.children[
433 ColorNode[] children; field in class:PaletteBuilder.ColorNode
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDSchemaBuilderImpl.java105 static DContainerPattern addAll( DContainerPattern parent, List<DPattern> children) { argument
106 for (DPattern c : children)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DModelNode.java113 private LinkedList<ModelNode> children; field in class:ModelNode
145 this.children = new LinkedList<ModelNode>();
146 this.unmodifiableViewOnContent = Collections.unmodifiableCollection(this.children);
296 * Sets the parent model reference on the node and its children. The method may be invoked only on the root node
312 * The method updates the parentModel reference on current model node instance and all of it's children
319 for (ModelNode child : children) {
409 * Appends the specified child node to the end of the children list of this node and sets it's parent to reference
412 * @param child node to be appended to the children list of this node.
419 children.add(child);
439 * more than {@code Integer.MAX_VALUE} children, return
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DGroup.java57 private Node children; field in class:Group
78 for (Node node = children; node != null; node = node.getNext()) {
85 children = child;
100 return children;
145 for (Node node = children; node != null; node = node.getNext()) {
162 for (Node node = children; node != null; node = node.getNext()) {
178 for (Node node = children; node != null; node = node.getNext()) {
196 for (Node node = children; node != null; node = node.getNext()) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSConstraints.java636 // non-pointless children
659 // Fill in a vector with the children of the particle, removing any
675 // subsitution group as a choice. Fill in the children vector with the
685 // Fill in the vector of children
719 // Fill in a vector with the children of the particle, removing any
732 // subsitution group as a choice. Fill in the children vector with the
1021 Vector children = new Vector();
1025 gatherChildren(group.fCompositor, group.fParticles[i], children);
1027 return children;
1031 private static void gatherChildren(int parentType, XSParticleDecl p, Vector children) { argument
1218 checkNSRecurseCheckCardinality(Vector children, int min1, int max1, SubstitutionGroupHandler dSGHandler, XSParticleDecl wildcard, int min2, int max2, boolean checkWCOccurrence) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAImpl.java215 private Map children; // Map from name to POA of POAs created by field in class:POAImpl
325 children = new HashMap();
339 parent.children.put(name, this);
594 // call to destroy. Also all children should be destroyed
614 // the children, and an iterator is not deletion-safe.
615 childPoas = (POAImpl[])poa.children.values().toArray(
622 // while destroying the POA's children, since this may involve
649 // to safely remove poa from parent's children Map.
704 parent.children.remove( poa.name ) ;
767 // We cannot create children o
[all...]
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextSupport.java204 * Gets the number of children currently nested in
207 * @return number of children
210 synchronized(children) {
211 return children.size();
220 * nested children.
221 * @return if there are not children
224 synchronized(children) {
225 return children.isEmpty();
236 synchronized(children) {
237 return children
1354 protected transient HashMap children; field in class:BeanContextSupport
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogManager.java136 * the logger called "foo" and (recursively) for any of its children
653 // Walk over the children and tell them we are their new parent.
722 if (node.children == null) {
723 node.children = new HashMap<>();
725 LogNode child = node.children.get(head);
728 node.children.put(head, child);
832 // - anonymous Loggers are always children of the rootLogger
1377 HashMap<String,LogNode> children; field in class:LogManager.LogNode
1390 if (children == null) {
1393 Iterator<LogNode> values = children
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DSolarisWatchService.java141 private Map<Path,EntryNode> children; field in class:SolarisWatchService.SolarisWatchKey
195 if (children == null)
196 children = new HashMap<Path,EntryNode>();
197 children.put(name, node);
202 children.remove(name);
207 if (children != null)
208 return children.get(name);
330 if (key.children != null) {
331 for (Map.Entry<Path,EntryNode> entry: key.children.entrySet()) {
599 * need to update the events of registered children
[all...]

Completed in 76 milliseconds

123