Searched refs:NodeImpl (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DNodeImpl.java29 public class NodeImpl extends DefaultNode { class in inherits:DefaultNode
39 public NodeImpl() { method in class:NodeImpl
43 public NodeImpl(String prefix, String localpart, String rawname, String uri, short nodeType) { method in class:NodeImpl
H A DSchemaDOM.java50 NodeImpl[][] relations;
258 NodeImpl[][] temp = new NodeImpl[relations.length+relationsRowResizeFactor][];
261 temp[i] = new NodeImpl[relationsColResizeFactor];
267 NodeImpl[] temp = new NodeImpl[relations[i].length+relationsColResizeFactor];
280 relations = new NodeImpl[relationsRowResizeFactor][];
287 relations[i] = new NodeImpl[relationsColResizeFactor];
H A DAttrImpl.java78 public class AttrImpl extends NodeImpl
H A DDefaultText.java53 public class DefaultText extends NodeImpl implements Text {
H A DDefaultElement.java37 public class DefaultElement extends NodeImpl
H A DDefaultDocument.java47 public class DefaultDocument extends NodeImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DPresentationManagerImpl.java123 NodeImpl root = new NodeImpl( cls ) ;
196 private Set getRootSet( Class target, NodeImpl root, Graph gr )
208 Node node = new NodeImpl( superclass ) ;
231 NodeImpl node = (NodeImpl)iter.next() ;
238 private String[] makeTypeIds( NodeImpl root, Graph gr, Set rootSet )
263 NodeImpl node = (NodeImpl)iter.next() ;
269 private static class NodeImpl implement class in class:PresentationManagerImpl
278 public NodeImpl( Class interf ) method in class:PresentationManagerImpl.NodeImpl
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DChildNode.java26 * ChildNode inherits from NodeImpl and adds the capability of being a child by
33 extends NodeImpl {
123 final NodeImpl parentNode() {
H A DDeferredElementImpl.java121 NodeImpl attr = (NodeImpl)ownerDocument.getNodeObject(index);
H A DNamedNodeMapImpl.java85 protected NodeImpl ownerNode; // the node this map belongs to
92 protected NamedNodeMapImpl(NodeImpl ownerNode) {
194 NodeImpl previous = null;
196 previous = (NodeImpl) nodes.get(i);
237 NodeImpl previous = null;
239 previous = (NodeImpl) nodes.get(i);
246 previous = (NodeImpl) nodes.get(i);
281 NodeImpl n = (NodeImpl)nodes.get(i);
317 NodeImpl
[all...]
H A DDocumentImpl.java328 void replacedText(NodeImpl node) {
342 void deletedText(NodeImpl node, int offset, int count) {
357 void insertedText(NodeImpl node, int offset, int count) {
440 protected void setEventListeners(NodeImpl n, Vector listeners) {
460 protected Vector getEventListeners(NodeImpl n) {
518 protected void addEventListener(NodeImpl node, String type,
548 } // addEventListener(NodeImpl,String,EventListener,boolean) :void
561 protected void removeEventListener(NodeImpl node, String type,
598 } // removeEventListener(NodeImpl,String,EventListener,boolean) :void
600 protected void copyEventListeners(NodeImpl sr
[all...]
H A DDeepNodeListImpl.java83 protected NodeImpl rootNode; // Where the search started
96 public DeepNodeListImpl(NodeImpl rootNode, String tagName) {
103 public DeepNodeListImpl(NodeImpl rootNode,
142 thisNode=(NodeImpl)(nodes.lastElement());
H A DNodeImpl.java40 * NodeImpl provides the basic structure of a DOM tree. It is never used
55 * NodeImpl also implements NodeList, so it can return itself in
83 public abstract class NodeImpl class in inherits:Node,NodeList,EventTarget,Cloneable,Serializable
149 protected NodeImpl ownerNode; // typically the parent but not always!
176 protected NodeImpl(CoreDocumentImpl ownerDocument) { method in class:NodeImpl
182 public NodeImpl() {} method in class:NodeImpl
270 NodeImpl newnode;
272 newnode = (NodeImpl)clone();
362 NodeImpl parentNode() {
980 NodeImpl nod
[all...]
H A DElementDefinitionImpl.java76 return NodeImpl.ELEMENT_DEFINITION_NODE;
H A DAttributeMap.java317 NodeImpl clone = (NodeImpl)d.cloneNode(true);
426 NodeImpl clone = (NodeImpl)d.cloneNode(true);
479 public NamedNodeMapImpl cloneMap(NodeImpl ownerNode) {
502 NodeImpl n = (NodeImpl) srcnodes.get(i);
503 NodeImpl clone = (NodeImpl) n.cloneNode(true);
562 NodeImpl clon
[all...]
H A DCoreDocumentImpl.java1526 // if(source instanceof NodeImpl &&
1530 // newnode=(NodeImpl)source.cloneNode(false);
1534 if(source instanceof NodeImpl)
1535 userData = ((NodeImpl)source).getUserDataRecord();
1751 ((NodeImpl)newnode).setReadOnly(true, true);
1765 NodeImpl node;
1768 node = (NodeImpl) source;
1914 if (((NodeImpl)node).needsSyncData()) {
1915 ((NodeImpl)node).synchronizeData();
2437 if(n instanceof NodeImpl){
[all...]
H A DDocumentTypeImpl.java294 if (!((NodeImpl) entNode1).isEqualNode((NodeImpl) entNode2))
314 if (!((NodeImpl) noteNode1).isEqualNode((NodeImpl) noteNode2))
418 * @see NodeImpl#setReadOnly
H A DNotationImpl.java51 extends NodeImpl
H A DDeferredDocumentTypeImpl.java153 case NodeImpl.ELEMENT_DEFINITION_NODE: {
H A DParentNode.java39 * ParentNode, just like NodeImpl, also implements NodeList, so it can
51 * point we used to have ParentNode inheriting from NodeImpl and another class
374 for (NodeImpl a = this; treeSafe && a != null; a = a.parentNode())
626 return hasTextContent(child) ? ((NodeImpl) child).getTextContent() : "";
645 ((NodeImpl) child).getTextContent(buf);
862 * Override inherited behavior from NodeImpl to support deep equal.
874 if (!((NodeImpl) child1).isEqualNode(child2)) {
H A DAttrImpl.java72 * NodeImpl and provide its own implementation of the ParentNode's behavior.
95 * now because AttrImpl now inherits directly from NodeImpl and has its own
117 extends NodeImpl
790 for (NodeImpl a = this; treeSafe && a != null; a = a.parentNode())
H A DElementImpl.java895 * Override inherited behavior from NodeImpl and ParentNode to check on
917 if (n2 == null || !((NodeImpl) n1).isEqualNode(n2)) {
924 if (n2 == null || !((NodeImpl) n1).isEqualNode(n2)) {
1097 * @see NodeImpl#setReadOnly
H A DElementNSImpl.java369 NodeImpl parentOrOwner = (parentNode() != null) ? parentNode() : ownerNode;
484 * @see NodeImpl#setReadOnly
H A DTextImpl.java212 ((NodeImpl)node).getTextContent(buffer);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDOMUtil.java315 if (node instanceof com.sun.org.apache.xerces.internal.impl.xs.opti.NodeImpl)
316 ((com.sun.org.apache.xerces.internal.impl.xs.opti.NodeImpl)node).setReadOnly(true, false);
317 else if (node instanceof com.sun.org.apache.xerces.internal.dom.NodeImpl)
318 ((com.sun.org.apache.xerces.internal.dom.NodeImpl)node).setReadOnly(true, false);
323 if (node instanceof com.sun.org.apache.xerces.internal.impl.xs.opti.NodeImpl) {
324 ((com.sun.org.apache.xerces.internal.impl.xs.opti.NodeImpl)node).setReadOnly(true, false);
333 if (node instanceof com.sun.org.apache.xerces.internal.impl.xs.opti.NodeImpl)
334 ((com.sun.org.apache.xerces.internal.impl.xs.opti.NodeImpl)node).setReadOnly(false, false);
335 else if (node instanceof com.sun.org.apache.xerces.internal.dom.NodeImpl)
336 ((com.sun.org.apache.xerces.internal.dom.NodeImpl)nod
[all...]

Completed in 554 milliseconds

12