|
|||||||||
Home >> All >> javax >> swing >> text >> [ html overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |
javax.swing.text.html
Interface CSSParser.CSSParserCallback

- All Known Implementing Classes:
- StyleSheet.CssParser
- Enclosing interface:
- CSSParser
- static interface CSSParser.CSSParserCallback
Receives all information about the CSS document structure while parsing it. The methods are invoked by parser.
Method Summary | |
void |
endRule()
Called when the end of a rule is encountered. |
void |
handleImport(java.lang.String imp)
Handles the import statment in the document. |
void |
handleProperty(java.lang.String property)
Handles the properties in the document. |
void |
handleSelector(java.lang.String selector)
Handles the selector of a rule. |
void |
handleValue(java.lang.String value)
Handles the values in the document. |
void |
startRule()
Called when the start of a rule is encountered. |
Method Detail |
handleImport
public void handleImport(java.lang.String imp)
- Handles the import statment in the document.
startRule
public void startRule()
- Called when the start of a rule is encountered.
endRule
public void endRule()
- Called when the end of a rule is encountered.
handleSelector
public void handleSelector(java.lang.String selector)
- Handles the selector of a rule.
handleProperty
public void handleProperty(java.lang.String property)
- Handles the properties in the document.
handleValue
public void handleValue(java.lang.String value)
- Handles the values in the document.
|
|||||||||
Home >> All >> javax >> swing >> text >> [ html overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |