2026-03-17 13:31:18 -07:00

23 lines
748 B
Java

package org.apache.batik.css.parser;
import java.io.IOException;
import org.w3c.css.sac.CSSException;
import org.w3c.css.sac.LexicalUnit;
import org.w3c.css.sac.Parser;
import org.w3c.css.sac.SACMediaList;
import org.w3c.css.sac.SelectorList;
public interface ExtendedParser extends Parser {
SACMediaList parseMedia(String str) throws CSSException, IOException;
boolean parsePriority(String str) throws CSSException, IOException;
LexicalUnit parsePropertyValue(String str) throws CSSException, IOException;
void parseRule(String str) throws CSSException, IOException;
SelectorList parseSelectors(String str) throws CSSException, IOException;
void parseStyleDeclaration(String str) throws CSSException, IOException;
}