当前位置: 首页>>代码示例>>Java>>正文


Java MutationEventImpl.initMutationEvent方法代码示例

本文整理汇总了Java中com.sun.org.apache.xerces.internal.dom.events.MutationEventImpl.initMutationEvent方法的典型用法代码示例。如果您正苦于以下问题:Java MutationEventImpl.initMutationEvent方法的具体用法?Java MutationEventImpl.initMutationEvent怎么用?Java MutationEventImpl.initMutationEvent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.sun.org.apache.xerces.internal.dom.events.MutationEventImpl的用法示例。


在下文中一共展示了MutationEventImpl.initMutationEvent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: removedAttrNode

import com.sun.org.apache.xerces.internal.dom.events.MutationEventImpl; //导入方法依赖的package包/类
/**
 * A method to be called when an attribute node has been removed
 */
void removedAttrNode(AttrImpl attr, NodeImpl oldOwner, String name) {
    // We can't use the standard dispatchAggregate, since it assumes
    // that the Attr is still attached to an owner. This code is
    // similar but dispatches to the previous owner, "element".
    if (mutationEvents) {
        // If we have to send DOMAttrModified (determined earlier),
        // do so.
        LCount lc = LCount.lookup(MutationEventImpl.DOM_ATTR_MODIFIED);
        if (lc.total > 0) {
            MutationEventImpl me= new MutationEventImpl();
            me.initMutationEvent(MutationEventImpl.DOM_ATTR_MODIFIED,
                                 true, false, attr,
                                 attr.getNodeValue(), null, name,
                                 MutationEvent.REMOVAL);
            dispatchEvent(oldOwner, me);
        }

        // We can hand off to process DOMSubtreeModified, though.
        // Note that only the Element needs to be informed; the
        // Attr's subtree has not been changed by this operation.
        dispatchAggregateEvents(oldOwner, null, null, (short) 0);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:27,代码来源:DocumentImpl.java


注:本文中的com.sun.org.apache.xerces.internal.dom.events.MutationEventImpl.initMutationEvent方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。