01: /*
02: * Copyright (c) 2005 World Wide Web Consortium,
03: *
04: * (Massachusetts Institute of Technology, European Research Consortium for
05: * Informatics and Mathematics, Keio University). All Rights Reserved. This
06: * work is distributed under the W3C(r) Software License [1] in the hope that
07: * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
08: * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
09: *
10: * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
11: *
12: * Modifications:
13: *
14: * September 10, 2005
15: * Placed interface in org.apache.batik.dom.xbl for the time being.
16: * Added javadocs.
17: */
18: package org.apache.batik.dom.xbl;
19:
20: import org.w3c.dom.Element;
21:
22: /**
23: * The interface for xbl:shadowTree elements.
24: * Eventually will move to org.w3c.dom.xbl (or some such package).
25: *
26: * @version $Id: XBLShadowTreeElement.java 498740 2007-01-22 18:35:57Z dvholten $
27: */
28: public interface XBLShadowTreeElement extends Element {
29:
30: /**
31: * Returns the Element that has an ID attribute with the given value.
32: */
33: Element getElementById(String elementId);
34: }
|