01: /*
02: * Copyright (c) 1999 World Wide Web Consortium,
03: * (Massachusetts Institute of Technology, Institut National de
04: * Recherche en Informatique et en Automatique, Keio University). All
05: * Rights Reserved. This program is distributed under the W3C's Software
06: * Intellectual Property License. This program is distributed in the
07: * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
08: * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
09: * PURPOSE.
10: * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
11: *
12: * $Id$
13: */
14: package org.w3c.css.sac;
15:
16: /**
17: * @version $Revision$
18: * @author Philippe Le Hegaret
19: * @see Selector#SAC_ELEMENT_NODE_SELECTOR
20: */
21: public interface ElementSelector extends SimpleSelector {
22:
23: /**
24: * Returns the
25: * <a href="http://www.w3.org/TR/REC-xml-names/#dt-NSName">namespace
26: * URI</a> of this element selector.
27: * <p><code>NULL</code> if this element selector can match any namespace.</p>
28: */
29: public String getNamespaceURI();
30:
31: /**
32: * Returns the
33: * <a href="http://www.w3.org/TR/REC-xml-names/#NT-LocalPart">local part</a>
34: * of the
35: * <a href="http://www.w3.org/TR/REC-xml-names/#ns-qualnames">qualified
36: * name</a> of this element.
37: * <p><code>NULL</code> if this element selector can match any element.</p>
38: * </ul>
39: */
40: public String getLocalName();
41: }
|