org.apache.batik.dom.xbl.ShadowTreeEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.fop Show documentation
Show all versions of org.apache.fop Show documentation
The core maven build properties
The newest version!
/*
* Copyright (c) 2005 World Wide Web Consortium,
*
* (Massachusetts Institute of Technology, European Research Consortium for
* Informatics and Mathematics, Keio University). All Rights Reserved. This
* work is distributed under the W3C(r) Software License [1] in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
*
* Modifications:
*
* September 10, 2005
* Placed interface in org.apache.batik.dom.xbl for the time being.
* Added javadocs.
*/
package org.apache.batik.dom.xbl;
import org.w3c.dom.events.Event;
/**
* Interface for shadow tree related events.
* Eventually will move to org.w3c.dom.xbl (or some such package).
*
* @version $Id: ShadowTreeEvent.java 1733416 2016-03-03 07:07:13Z gadams $
*/
public interface ShadowTreeEvent extends Event {
XBLShadowTreeElement getXblShadowTree();
void initShadowTreeEvent(String typeArg,
boolean canBubbleArg,
boolean cancelableArg,
XBLShadowTreeElement xblShadowTreeArg);
void initShadowTreeEventNS(String namespaceURIArg,
String typeArg,
boolean canBubbleArg,
boolean cancelableArg,
XBLShadowTreeElement xblShadowTreeArg);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy