KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > css > engine > sac > CSSChildSelector


1 /*
2
3    Copyright 2002 The Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16
17  */

18 package org.apache.batik.css.engine.sac;
19
20 import java.util.Set JavaDoc;
21
22 import org.w3c.css.sac.Selector;
23 import org.w3c.css.sac.SimpleSelector;
24 import org.w3c.dom.Element JavaDoc;
25 import org.w3c.dom.Node JavaDoc;
26
27 /**
28  * This class provides an implementation of the
29  * {@link org.w3c.css.sac.DescendantSelector} interface.
30  *
31  * @author <a HREF="mailto:stephane@hillion.org">Stephane Hillion</a>
32  * @version $Id: CSSChildSelector.java,v 1.4 2004/08/18 07:12:51 vhardy Exp $
33  */

34 public class CSSChildSelector extends AbstractDescendantSelector {
35
36     /**
37      * Creates a new CSSChildSelector object.
38      */

39     public CSSChildSelector(Selector ancestor, SimpleSelector simple) {
40     super(ancestor, simple);
41     }
42
43     /**
44      * <b>SAC</b>: Implements {@link
45      * org.w3c.css.sac.Selector#getSelectorType()}.
46      */

47     public short getSelectorType() {
48     return SAC_CHILD_SELECTOR;
49     }
50
51     /**
52      * Tests whether this selector matches the given element.
53      */

54     public boolean match(Element JavaDoc e, String JavaDoc pseudoE) {
55     Node JavaDoc n = e.getParentNode();
56     if (n != null && n.getNodeType() == Node.ELEMENT_NODE) {
57         return ((ExtendedSelector)getAncestorSelector()).match((Element JavaDoc)n,
58                                                                    null) &&
59            ((ExtendedSelector)getSimpleSelector()).match(e, pseudoE);
60     }
61     return false;
62     }
63
64     /**
65      * Fills the given set with the attribute names found in this selector.
66      */

67     public void fillAttributeSet(Set JavaDoc attrSet) {
68         ((ExtendedSelector)getAncestorSelector()).fillAttributeSet(attrSet);
69         ((ExtendedSelector)getSimpleSelector()).fillAttributeSet(attrSet);
70     }
71
72     /**
73      * Returns a representation of the selector.
74      */

75     public String JavaDoc toString() {
76     SimpleSelector s = getSimpleSelector();
77     if (s.getSelectorType() == SAC_PSEUDO_ELEMENT_SELECTOR) {
78         return "" + getAncestorSelector() + s;
79     }
80     return getAncestorSelector() + " > " + s;
81     }
82 }
83
Popular Tags