34 lines
1.0 KiB
Java
34 lines
1.0 KiB
Java
package org.w3c.css.sac;
|
|
|
|
public interface DocumentHandler {
|
|
void comment(String str) throws CSSException;
|
|
|
|
void endDocument(InputSource inputSource) throws CSSException;
|
|
|
|
void endFontFace() throws CSSException;
|
|
|
|
void endMedia(SACMediaList sACMediaList) throws CSSException;
|
|
|
|
void endPage(String str, String str2) throws CSSException;
|
|
|
|
void endSelector(SelectorList selectorList) throws CSSException;
|
|
|
|
void ignorableAtRule(String str) throws CSSException;
|
|
|
|
void importStyle(String str, SACMediaList sACMediaList, String str2) throws CSSException;
|
|
|
|
void namespaceDeclaration(String str, String str2) throws CSSException;
|
|
|
|
void property(String str, LexicalUnit lexicalUnit, boolean z) throws CSSException;
|
|
|
|
void startDocument(InputSource inputSource) throws CSSException;
|
|
|
|
void startFontFace() throws CSSException;
|
|
|
|
void startMedia(SACMediaList sACMediaList) throws CSSException;
|
|
|
|
void startPage(String str, String str2) throws CSSException;
|
|
|
|
void startSelector(SelectorList selectorList) throws CSSException;
|
|
}
|