KickJava   Java API By Example, From Geeks To Geeks.

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


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 org.w3c.css.sac.CombinatorCondition;
21 import org.w3c.css.sac.Condition;
22
23 /**
24  * This class provides an abstract implementation of the {@link
25  * org.w3c.css.sac.CombinatorCondition} interface.
26  *
27  * @author <a HREF="mailto:stephane@hillion.org">Stephane Hillion</a>
28  * @version $Id: AbstractCombinatorCondition.java,v 1.3 2004/08/18 07:12:50 vhardy Exp $
29  */

30 public abstract class AbstractCombinatorCondition
31     implements CombinatorCondition,
32                ExtendedCondition {
33
34     /**
35      * The first condition.
36      */

37     protected Condition firstCondition;
38
39     /**
40      * The second condition.
41      */

42     protected Condition secondCondition;
43
44     /**
45      * Creates a new CombinatorCondition object.
46      */

47     protected AbstractCombinatorCondition(Condition c1, Condition c2) {
48     firstCondition = c1;
49     secondCondition = c2;
50     }
51
52     /**
53      * Indicates whether some other object is "equal to" this one.
54      * @param obj the reference object with which to compare.
55      */

56     public boolean equals(Object JavaDoc obj) {
57     if (obj == null || !(obj.getClass() != getClass())) {
58         return false;
59     }
60     AbstractCombinatorCondition c = (AbstractCombinatorCondition)obj;
61     return c.firstCondition.equals(firstCondition) &&
62            c.secondCondition.equals(secondCondition);
63     }
64
65     /**
66      * Returns the specificity of this condition.
67      */

68     public int getSpecificity() {
69     return ((ExtendedCondition)getFirstCondition()).getSpecificity() +
70                ((ExtendedCondition)getSecondCondition()).getSpecificity();
71     }
72
73     /**
74      * <b>SAC</b>: Implements {@link
75      * org.w3c.css.sac.CombinatorCondition#getFirstCondition()}.
76      */

77     public Condition getFirstCondition() {
78     return firstCondition;
79     }
80
81     /**
82      * <b>SAC</b>: Implements {@link
83      * org.w3c.css.sac.CombinatorCondition#getSecondCondition()}.
84      */

85     public Condition getSecondCondition() {
86     return secondCondition;
87     }
88 }
89
Popular Tags