Lines Matching refs:node

55     // every node has one parent, and zero or more children
73 * parent in the Policy Tree to this node. If null, this is the
75 * for this node, as found in the certificate. It also takes a boolean
76 * argument specifying whether this node is being created as a result
80 * node is the tree's root node
81 * @param validPolicy a String representing this node's valid policy OID
87 * node was generated by a policy mapping
125 * Alternate constructor which makes a new node with the policy data
128 * @param parent a PolicyNode that's the new parent of the node, or
129 * null if this is the root node
130 * @param node a PolicyNode containing the policy data to copy
132 PolicyNodeImpl(PolicyNodeImpl parent, PolicyNodeImpl node) {
133 this(parent, node.mValidPolicy, node.mQualifierSet,
134 node.mCriticalityIndicator, node.mExpectedPolicySet, false);
167 * Starting at the node on which this method is called,
168 * it recurses through the tree and prints out each node.
189 * Sets the immutability flag of this node and all of its children
195 for (PolicyNodeImpl node : mChildren) {
196 node.setImmutable();
202 * Private method sets a child node. This is called from the child's
205 * @param child new <code>PolicyNodeImpl</code> child node
248 PolicyNodeImpl node = it.next();
249 node.prune(depth);
252 if ((node.mChildren.size() == 0) && (depth > mDepth + 1))
258 * Deletes the specified child node of this node, if it exists.
260 * @param childNode the child node to be deleted
271 * rooted at the node on which this was called.
282 for (PolicyNodeImpl node : mChildren) {
283 node.copyTree(newNode);
310 for (PolicyNodeImpl node : mChildren) {
311 node.getPolicyNodes(depth, set);
343 for (PolicyNodeImpl node : mChildren) {
344 set.addAll(node.getPolicyNodesExpectedHelper(depth,
373 for (PolicyNodeImpl node : mChildren) {
374 set.addAll(node.getPolicyNodesValid(depth, validOID));
393 * Prints out some data on this node.