Examples of MutationEventImpl


Examples of org.apache.xerces.dom.events.MutationEventImpl

        if(NodeImpl.MUTATIONEVENTS && ownerNode.ownerDocument().mutationEvents)
        {
          // If we have to send DOMAttrModified (determined earlier),
            // do so.
            if(lc.captures+lc.bubbles+lc.defaults>0) {
                MutationEventImpl me= new MutationEventImpl();
                me.initMutationEvent(MutationEventImpl.DOM_ATTR_MODIFIED,
                                     true, false, null, n.getNodeValue(),
             null, name, MutationEvent.REMOVAL);
                ownerNode.dispatchEvent(me);
            }
View Full Code Here

Examples of org.apache.xerces.dom.events.MutationEventImpl

  throws DOMException {
      if (type.equalsIgnoreCase("Events") || "Event".equals(type))
          return new EventImpl();
      if (type.equalsIgnoreCase("MutationEvents") ||
                "MutationEvent".equals(type))
          return new MutationEventImpl();
      else
          throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
             "DOM007 Not supported");
  }
View Full Code Here

Examples of org.apache.xerces.dom.events.MutationEventImpl

        if (enclosingAttr != null) {
            LCount lc = LCount.lookup(MutationEventImpl.DOM_ATTR_MODIFIED);
            owner = (NodeImpl) enclosingAttr.getOwnerElement();
            if (lc.captures + lc.bubbles + lc.defaults > 0) {
                if (owner != null) {
                    MutationEventImpl me =  new MutationEventImpl();
                    me.initMutationEvent(MutationEventImpl.DOM_ATTR_MODIFIED,
                                         true, false, enclosingAttr,
                                         oldvalue,
                                         enclosingAttr.getNodeValue(),
                                         enclosingAttr.getNodeName(),
                                         change);
                    owner.dispatchEvent(me);
                }
            }
        }
        // DOMSubtreeModified gets sent to the lowest common root of a
        // set of changes.
        // "This event is dispatched after all other events caused by the
        // mutation have been fired."
        LCount lc = LCount.lookup(MutationEventImpl.DOM_SUBTREE_MODIFIED);
        if (lc.captures + lc.bubbles + lc.defaults > 0) {
            MutationEvent me =  new MutationEventImpl();
            me.initMutationEvent(MutationEventImpl.DOM_SUBTREE_MODIFIED,
                                 true, false, null, null,
                                 null, null, (short) 0);

            // If we're within an Attr, DStM gets sent to the Attr
            // and to its owningElement. Otherwise we dispatch it
View Full Code Here

Examples of org.apache.xerces.dom.events.MutationEventImpl

        if (mutationEvents) {
            // MUTATION POST-EVENTS:
            LCount lc =
                LCount.lookup(MutationEventImpl.DOM_CHARACTER_DATA_MODIFIED);
            if (lc.captures + lc.bubbles + lc.defaults > 0) {
                MutationEvent me = new MutationEventImpl();
                me.initMutationEvent(
                                 MutationEventImpl.DOM_CHARACTER_DATA_MODIFIED,
                                     true, false, null,
                                     oldvalue, value, null, (short) 0);
                dispatchEvent(me);
            }
View Full Code Here

Examples of org.apache.xerces.dom.events.MutationEventImpl

            // MUTATION POST-EVENTS:
            // "Local" events (non-aggregated)
            // New child is told it was inserted, and where
            LCount lc = LCount.lookup(MutationEventImpl.DOM_NODE_INSERTED);
            if (lc.captures + lc.bubbles + lc.defaults > 0) {
                MutationEventImpl me = new MutationEventImpl();
                me.initMutationEvent(MutationEventImpl.DOM_NODE_INSERTED,
                                     true, false, node,
                                     null, null, null, (short) 0);
                dispatchEvent(newInternal, me);
            }

            // If within the Document, tell the subtree it's been added
            // to the Doc.
            lc = LCount.lookup(
                            MutationEventImpl.DOM_NODE_INSERTED_INTO_DOCUMENT);
            if (lc.captures + lc.bubbles + lc.defaults > 0) {
                NodeImpl eventAncestor = node;
                if (savedEnclosingAttr != null)
                    eventAncestor = (NodeImpl)
                        savedEnclosingAttr.node.getOwnerElement();
                if (eventAncestor != null) { // Might have been orphan Attr
                    NodeImpl p = eventAncestor;
                    while (p != null) {
                        eventAncestor = p; // Last non-null ancestor
                        // In this context, ancestry includes
                        // walking back from Attr to Element
                        if (p.getNodeType() == ATTRIBUTE_NODE) {
                            p = (NodeImpl) ((AttrImpl)p).getOwnerElement();
                        }
                        else {
                            p = p.parentNode();
                        }
                    }
                    if (eventAncestor.getNodeType() == Node.DOCUMENT_NODE){
                        MutationEventImpl me = new MutationEventImpl();
                        me.initMutationEvent(MutationEventImpl
                                             .DOM_NODE_INSERTED_INTO_DOCUMENT,
                                             false,false,null,null,
                                             null,null,(short)0);
                        dispatchEventToSubtree(node, newInternal, me);
                    }
View Full Code Here

Examples of org.apache.xerces.dom.events.MutationEventImpl

        if (mutationEvents) {
          // If we have to send DOMAttrModified (determined earlier),
            // do so.
            LCount lc = LCount.lookup(MutationEventImpl.DOM_ATTR_MODIFIED);
            if (lc.captures + lc.bubbles + lc.defaults > 0) {
                MutationEventImpl me= new MutationEventImpl();
                me.initMutationEvent(MutationEventImpl.DOM_ATTR_MODIFIED,
                                     true, false, null,
                                     attr.getNodeValue(), null, name,
                                     MutationEvent.REMOVAL);
                dispatchEvent(oldOwner, me);
            }
View Full Code Here

Examples of org.apache.xerces.dom.events.MutationEventImpl

      if (enclosingAttr != null) {
                LCount lc = LCount.lookup(MutationEventImpl.DOM_ATTR_MODIFIED);
                    owner=((NodeImpl)(enclosingAttr.getOwnerElement()));
                if(lc.captures+lc.bubbles+lc.defaults>0) {
                    if(owner!=null) {
                        MutationEventImpl me= new MutationEventImpl();
                        me.initMutationEvent(
                                           MutationEventImpl.DOM_ATTR_MODIFIED,
                                             true, false, enclosingAttr,
                                             oldvalue,
                                             enclosingAttr.getNodeValue(),
                                             enclosingAttr.getNodeName(),
                                             change);
                        owner.dispatchEvent(me);
                    }
                }
            }
   
            // DOMSubtreeModified gets sent to the lowest common root of a
            // set of changes.
            // "This event is dispatched after all other events caused by the
            // mutation have been fired."
            LCount lc=LCount.lookup(MutationEventImpl.DOM_SUBTREE_MODIFIED);
            if(lc.captures+lc.bubbles+lc.defaults>0) {
                MutationEvent me= new MutationEventImpl();
                me.initMutationEvent(MutationEventImpl.DOM_SUBTREE_MODIFIED,
                                     true,false,null,null,null,null,(short)0);

                // If we're within an Attr, DStM gets sent to the Attr
                // and to its owningElement. Otherwise we dispatch it
                // locally.
View Full Code Here

Examples of org.apache.xerces.dom.events.MutationEventImpl

        if(NodeImpl.MUTATIONEVENTS && ownerNode.ownerDocument().mutationEvents)
        {
          // If we have to send DOMAttrModified (determined earlier),
            // do so.
            if(lc.captures+lc.bubbles+lc.defaults>0) {
                MutationEventImpl me= new MutationEventImpl();
                me.initMutationEvent(MutationEventImpl.DOM_ATTR_MODIFIED,
                                     true, false,
                                     null, n.getNodeValue(),
             null, name, MutationEvent.REMOVAL);
                ownerNode.dispatchEvent(me);
            }
View Full Code Here

Examples of org.apache.xerces.dom.events.MutationEventImpl

        if(NodeImpl.MUTATIONEVENTS && ownerNode.ownerDocument().mutationEvents)
        {
          // If we have to send DOMAttrModified (determined earlier),
            // do so.
            if(lc.captures+lc.bubbles+lc.defaults>0) {
                MutationEventImpl me= new MutationEventImpl();
                me.initMutationEvent(MutationEventImpl.DOM_ATTR_MODIFIED,
                                     true, false, null, n.getNodeValue(),
             null, name, MutationEvent.REMOVAL);
                ownerNode.dispatchEvent(me);
            }
View Full Code Here

Examples of org.apache.xerces.dom.events.MutationEventImpl

            // "Local" events (non-aggregated)
            if ((mutationMask&MUTATION_LOCAL) != 0) {
                // New child is told it was inserted, and where
                LCount lc = LCount.lookup(MutationEventImpl.DOM_NODE_INSERTED);
                if (lc.captures+lc.bubbles+lc.defaults>0) {
                    MutationEvent me= new MutationEventImpl();
                    me.initMutationEvent(MutationEventImpl.DOM_NODE_INSERTED,
                                         true,false,this,null,
                                         null,null,(short)0);
                    newInternal.dispatchEvent(me);
                }

                // If within the Document, tell the subtree it's been added
                // to the Doc.
                lc=LCount.lookup(
                            MutationEventImpl.DOM_NODE_INSERTED_INTO_DOCUMENT);
                if (lc.captures+lc.bubbles+lc.defaults>0) {
                    NodeImpl eventAncestor=this;
                    if (enclosingAttr!=null)
                        eventAncestor=
                            (NodeImpl)(enclosingAttr.node.getOwnerElement());
                    if (eventAncestor!=null) { // Might have been orphan Attr
                        NodeImpl p=eventAncestor;
                        while (p!=null) {
                            eventAncestor=p; // Last non-null ancestor
                            // In this context, ancestry includes
                            // walking back from Attr to Element
                            if (p.getNodeType()==ATTRIBUTE_NODE) {
                                p=(ElementImpl)((AttrImpl)p).getOwnerElement();
                            }
                            else {
                                p=p.parentNode();
                            }
                        }
                        if (eventAncestor.getNodeType()==Node.DOCUMENT_NODE) {
                            MutationEvent me= new MutationEventImpl();
                            me.initMutationEvent(MutationEventImpl
                                              .DOM_NODE_INSERTED_INTO_DOCUMENT,
                                                 false,false,null,null,
                                                 null,null,(short)0);
                            dispatchEventToSubtree(newInternal,me);
                        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.