1 18 package org.apache.batik.css.parser; 19 20 import org.w3c.css.sac.CombinatorCondition; 21 import org.w3c.css.sac.Condition; 22 23 30 31 public abstract class AbstractCombinatorCondition 32 implements CombinatorCondition { 33 34 37 protected Condition firstCondition; 38 39 42 protected Condition secondCondition; 43 44 47 protected AbstractCombinatorCondition(Condition c1, Condition c2) { 48 firstCondition = c1; 49 secondCondition = c2; 50 } 51 52 55 public Condition getFirstCondition() { 56 return firstCondition; 57 } 58 59 62 public Condition getSecondCondition() { 63 return secondCondition; 64 } 65 } 66 | Popular Tags |