1 18 package org.apache.batik.css.parser; 19 20 import java.io.IOException ; 21 22 import org.w3c.css.sac.CSSException; 23 import org.w3c.css.sac.LexicalUnit; 24 import org.w3c.css.sac.SACMediaList; 25 import org.w3c.css.sac.SelectorList; 26 27 34 public interface ExtendedParser extends org.w3c.css.sac.Parser { 35 36 46 void parseStyleDeclaration(String source) 47 throws CSSException, IOException ; 48 49 50 59 void parseRule(String source) throws CSSException, IOException ; 60 61 71 SelectorList parseSelectors(String source) 72 throws CSSException, IOException ; 73 74 75 85 LexicalUnit parsePropertyValue(String source) 86 throws CSSException, IOException ; 87 88 89 99 SACMediaList parseMedia(String mediaText) 100 throws CSSException, IOException ; 101 102 112 boolean parsePriority(String source) 113 throws CSSException, IOException ; 114 115 } 116 | Popular Tags |