public class Parser extends Object implements ExtendedParser, Localizable
Parser interface.| Modifier and Type | Field and Description |
|---|---|
static String |
BUNDLE_CLASSNAME
The default resource bundle base name.
|
protected org.w3c.css.sac.ConditionFactory |
conditionFactory
The condition factory.
|
protected int |
current
The current lexical unit.
|
protected org.w3c.css.sac.DocumentHandler |
documentHandler
The document handler.
|
protected String |
documentURI
The document URI.
|
protected org.w3c.css.sac.ErrorHandler |
errorHandler
The error handler.
|
protected LocalizableSupport |
localizableSupport
The localizable support.
|
protected String |
pseudoElement
To store the current pseudo element.
|
protected Scanner |
scanner
The scanner used to scan the input source.
|
protected org.w3c.css.sac.SelectorFactory |
selectorFactory
The selector factory.
|
| Constructor and Description |
|---|
Parser() |
| Modifier and Type | Method and Description |
|---|---|
protected org.w3c.css.sac.CSSParseException |
createCSSParseException(String key)
Creates a parse exception.
|
protected org.w3c.css.sac.CSSParseException |
createCSSParseException(String key,
Object[] params)
Creates a parse exception.
|
protected Scanner |
createScanner(org.w3c.css.sac.InputSource source)
Creates a scanner, given an InputSource.
|
protected org.w3c.css.sac.LexicalUnit |
dimension(boolean positive,
org.w3c.css.sac.LexicalUnit prev)
Converts the current lexical unit to a dimension.
|
String |
formatMessage(String key,
Object[] args)
Implements
Localizable.formatMessage(String,Object[]). |
Locale |
getLocale()
Implements
Localizable.getLocale(). |
String |
getParserVersion()
SAC: Implements
Parser.getParserVersion(). |
protected org.w3c.css.sac.LexicalUnit |
hexcolor(org.w3c.css.sac.LexicalUnit prev)
Converts a hash unit to a RGB color.
|
protected boolean |
isPseudoElement(String s)
Tells whether or not the given string represents a pseudo-element.
|
protected int |
next()
Advances to the next token, ignoring comments.
|
protected int |
nextIgnoreSpaces()
Advances to the next token and skip the spaces, ignoring comments.
|
protected float |
number(boolean positive)
Converts the current lexical unit to a float.
|
protected void |
parseAtRule()
Parses an unknown rule.
|
protected org.w3c.css.sac.LexicalUnit |
parseExpression(boolean param)
Parses a CSS2 expression.
|
protected void |
parseFontFaceRule()
Parses a font-face rule.
|
protected org.w3c.css.sac.LexicalUnit |
parseFunction(boolean positive,
org.w3c.css.sac.LexicalUnit prev)
Parses a CSS2 function.
|
protected void |
parseImportRule()
Parses an import rule.
|
org.w3c.css.sac.SACMediaList |
parseMedia(String mediaText)
Implements
ExtendedParser.parseMedia(String). |
protected CSSSACMediaList |
parseMediaList()
Parses a media list.
|
protected void |
parseMediaRule()
Parses a media rule.
|
protected void |
parsePageRule()
Parses a page rule.
|
boolean |
parsePriority(org.w3c.css.sac.InputSource source)
SAC: Implements
Parser.parsePriority(InputSource). |
boolean |
parsePriority(String source)
Implements
ExtendedParser.parsePriority(String). |
protected boolean |
parsePriorityInternal()
Parses the priority using the current scanner.
|
org.w3c.css.sac.LexicalUnit |
parsePropertyValue(org.w3c.css.sac.InputSource source)
SAC: Implements
Parser.parsePropertyValue(InputSource). |
org.w3c.css.sac.LexicalUnit |
parsePropertyValue(String source)
Implements
ExtendedParser.parsePropertyValue(String). |
protected org.w3c.css.sac.LexicalUnit |
parsePropertyValueInternal()
Parses property value using the current scanner.
|
protected void |
parseRule()
Parses a rule.
|
void |
parseRule(org.w3c.css.sac.InputSource source)
SAC: Implements
Parser.parseRule(InputSource). |
void |
parseRule(String source)
Implements
ExtendedParser.parseRule(String). |
protected void |
parseRuleInternal()
Parses a rule using the current scanner.
|
protected void |
parseRuleSet()
Parses a ruleset.
|
protected org.w3c.css.sac.Selector |
parseSelector()
Parses a selector.
|
protected org.w3c.css.sac.SelectorList |
parseSelectorList()
Parses a selector list
|
org.w3c.css.sac.SelectorList |
parseSelectors(org.w3c.css.sac.InputSource source)
SAC: Implements
Parser.parseSelectors(InputSource). |
org.w3c.css.sac.SelectorList |
parseSelectors(String source)
Implements
ExtendedParser.parseSelectors(String). |
protected org.w3c.css.sac.SelectorList |
parseSelectorsInternal()
Parses selectors using the current scanner.
|
protected org.w3c.css.sac.SimpleSelector |
parseSimpleSelector()
Parses a simple selector.
|
protected void |
parseStyleDeclaration(boolean inSheet)
Parses the given reader.
|
void |
parseStyleDeclaration(org.w3c.css.sac.InputSource source)
SAC: Implements
Parser.parseStyleDeclaration(InputSource). |
void |
parseStyleDeclaration(String source)
Implements
ExtendedParser.parseStyleDeclaration(String). |
protected void |
parseStyleDeclarationInternal()
Parses a style declaration using the current scanner.
|
void |
parseStyleSheet(org.w3c.css.sac.InputSource source)
SAC: Implements
Parser.parseStyleSheet(InputSource). |
void |
parseStyleSheet(String uri)
SAC: Implements
Parser.parseStyleSheet(String). |
protected org.w3c.css.sac.LexicalUnit |
parseTerm(org.w3c.css.sac.LexicalUnit prev)
Parses a CSS2 term.
|
protected void |
reportError(org.w3c.css.sac.CSSParseException e)
Reports a parsing error.
|
protected void |
reportError(String key)
Reports a parsing error.
|
protected void |
reportError(String key,
Object[] params)
Reports a parsing error.
|
void |
setConditionFactory(org.w3c.css.sac.ConditionFactory factory)
SAC: Implements
Parser.setConditionFactory(ConditionFactory). |
void |
setDocumentHandler(org.w3c.css.sac.DocumentHandler handler)
SAC: Implements
Parser.setDocumentHandler(DocumentHandler). |
void |
setErrorHandler(org.w3c.css.sac.ErrorHandler handler)
SAC: Implements
Parser.setErrorHandler(ErrorHandler). |
void |
setLocale(Locale locale)
SAC: Implements
Parser.setLocale(Locale). |
void |
setSelectorFactory(org.w3c.css.sac.SelectorFactory factory)
SAC: Implements
Parser.setSelectorFactory(SelectorFactory). |
protected int |
skipSpaces()
Skips the white spaces.
|
protected int |
skipSpacesAndCDOCDC()
Skips the white spaces and CDO/CDC units.
|
public static final String BUNDLE_CLASSNAME
protected LocalizableSupport localizableSupport
protected Scanner scanner
protected int current
protected org.w3c.css.sac.DocumentHandler documentHandler
protected org.w3c.css.sac.SelectorFactory selectorFactory
protected org.w3c.css.sac.ConditionFactory conditionFactory
protected org.w3c.css.sac.ErrorHandler errorHandler
protected String pseudoElement
protected String documentURI
public String getParserVersion()
Parser.getParserVersion().getParserVersion in interface org.w3c.css.sac.Parserpublic void setLocale(Locale locale) throws org.w3c.css.sac.CSSException
Parser.setLocale(Locale).setLocale in interface LocalizablesetLocale in interface org.w3c.css.sac.Parserlocale - The locale to set.org.w3c.css.sac.CSSExceptionpublic Locale getLocale()
Localizable.getLocale().getLocale in interface Localizablepublic String formatMessage(String key, Object[] args) throws MissingResourceException
Localizable.formatMessage(String,Object[]).formatMessage in interface Localizablekey - The key used to retreive the message from the resource
bundle.args - The objects that compose the message.MissingResourceException - if the key is not in the bundle.public void setDocumentHandler(org.w3c.css.sac.DocumentHandler handler)
Parser.setDocumentHandler(DocumentHandler).setDocumentHandler in interface org.w3c.css.sac.Parserpublic void setSelectorFactory(org.w3c.css.sac.SelectorFactory factory)
Parser.setSelectorFactory(SelectorFactory).setSelectorFactory in interface org.w3c.css.sac.Parserpublic void setConditionFactory(org.w3c.css.sac.ConditionFactory factory)
Parser.setConditionFactory(ConditionFactory).setConditionFactory in interface org.w3c.css.sac.Parserpublic void setErrorHandler(org.w3c.css.sac.ErrorHandler handler)
Parser.setErrorHandler(ErrorHandler).setErrorHandler in interface org.w3c.css.sac.Parserpublic void parseStyleSheet(org.w3c.css.sac.InputSource source)
throws org.w3c.css.sac.CSSException,
IOException
Parser.parseStyleSheet(InputSource).parseStyleSheet in interface org.w3c.css.sac.Parserorg.w3c.css.sac.CSSExceptionIOExceptionpublic void parseStyleSheet(String uri) throws org.w3c.css.sac.CSSException, IOException
Parser.parseStyleSheet(String).parseStyleSheet in interface org.w3c.css.sac.Parserorg.w3c.css.sac.CSSExceptionIOExceptionpublic void parseStyleDeclaration(org.w3c.css.sac.InputSource source)
throws org.w3c.css.sac.CSSException,
IOException
Parser.parseStyleDeclaration(InputSource).parseStyleDeclaration in interface org.w3c.css.sac.Parserorg.w3c.css.sac.CSSExceptionIOExceptionprotected void parseStyleDeclarationInternal()
throws org.w3c.css.sac.CSSException,
IOException
org.w3c.css.sac.CSSExceptionIOExceptionpublic void parseRule(org.w3c.css.sac.InputSource source)
throws org.w3c.css.sac.CSSException,
IOException
Parser.parseRule(InputSource).parseRule in interface org.w3c.css.sac.Parserorg.w3c.css.sac.CSSExceptionIOExceptionprotected void parseRuleInternal()
throws org.w3c.css.sac.CSSException,
IOException
org.w3c.css.sac.CSSExceptionIOExceptionpublic org.w3c.css.sac.SelectorList parseSelectors(org.w3c.css.sac.InputSource source)
throws org.w3c.css.sac.CSSException,
IOException
Parser.parseSelectors(InputSource).parseSelectors in interface org.w3c.css.sac.Parserorg.w3c.css.sac.CSSExceptionIOExceptionprotected org.w3c.css.sac.SelectorList parseSelectorsInternal()
throws org.w3c.css.sac.CSSException,
IOException
org.w3c.css.sac.CSSExceptionIOExceptionpublic org.w3c.css.sac.LexicalUnit parsePropertyValue(org.w3c.css.sac.InputSource source)
throws org.w3c.css.sac.CSSException,
IOException
Parser.parsePropertyValue(InputSource).parsePropertyValue in interface org.w3c.css.sac.Parserorg.w3c.css.sac.CSSExceptionIOExceptionprotected org.w3c.css.sac.LexicalUnit parsePropertyValueInternal()
throws org.w3c.css.sac.CSSException,
IOException
org.w3c.css.sac.CSSExceptionIOExceptionpublic boolean parsePriority(org.w3c.css.sac.InputSource source)
throws org.w3c.css.sac.CSSException,
IOException
Parser.parsePriority(InputSource).parsePriority in interface org.w3c.css.sac.Parserorg.w3c.css.sac.CSSExceptionIOExceptionprotected boolean parsePriorityInternal()
throws org.w3c.css.sac.CSSException,
IOException
org.w3c.css.sac.CSSExceptionIOExceptionprotected void parseRule()
protected void parseAtRule()
protected void parseImportRule()
protected CSSSACMediaList parseMediaList()
protected void parseFontFaceRule()
protected void parsePageRule()
protected void parseMediaRule()
protected void parseRuleSet()
protected org.w3c.css.sac.SelectorList parseSelectorList()
protected org.w3c.css.sac.Selector parseSelector()
protected org.w3c.css.sac.SimpleSelector parseSimpleSelector()
protected boolean isPseudoElement(String s)
protected void parseStyleDeclaration(boolean inSheet)
throws org.w3c.css.sac.CSSException
org.w3c.css.sac.CSSExceptionprotected org.w3c.css.sac.LexicalUnit parseExpression(boolean param)
param - whether the expression to be parsed is a function parameterprotected org.w3c.css.sac.LexicalUnit parseTerm(org.w3c.css.sac.LexicalUnit prev)
protected org.w3c.css.sac.LexicalUnit parseFunction(boolean positive,
org.w3c.css.sac.LexicalUnit prev)
protected org.w3c.css.sac.LexicalUnit hexcolor(org.w3c.css.sac.LexicalUnit prev)
protected Scanner createScanner(org.w3c.css.sac.InputSource source)
protected int skipSpaces()
protected int skipSpacesAndCDOCDC()
protected float number(boolean positive)
protected org.w3c.css.sac.LexicalUnit dimension(boolean positive,
org.w3c.css.sac.LexicalUnit prev)
protected int next()
protected int nextIgnoreSpaces()
protected void reportError(String key)
protected void reportError(org.w3c.css.sac.CSSParseException e)
protected org.w3c.css.sac.CSSParseException createCSSParseException(String key)
protected org.w3c.css.sac.CSSParseException createCSSParseException(String key, Object[] params)
public void parseStyleDeclaration(String source) throws org.w3c.css.sac.CSSException, IOException
ExtendedParser.parseStyleDeclaration(String).parseStyleDeclaration in interface ExtendedParsersource - The declaration.org.w3c.css.sac.CSSException - Any CSS exception, possibly
wrapping another exception.IOException - An IO exception from the parser,
possibly from a byte stream or character stream
supplied by the application.public void parseRule(String source) throws org.w3c.css.sac.CSSException, IOException
ExtendedParser.parseRule(String).parseRule in interface ExtendedParserorg.w3c.css.sac.CSSException - Any CSS exception, possibly
wrapping another exception.IOException - An IO exception from the parser,
possibly from a byte stream or character stream
supplied by the application.public org.w3c.css.sac.SelectorList parseSelectors(String source) throws org.w3c.css.sac.CSSException, IOException
ExtendedParser.parseSelectors(String).parseSelectors in interface ExtendedParserorg.w3c.css.sac.CSSException - Any CSS exception, possibly
wrapping another exception.IOException - An IO exception from the parser,
possibly from a byte stream or character stream
supplied by the application.public org.w3c.css.sac.LexicalUnit parsePropertyValue(String source) throws org.w3c.css.sac.CSSException, IOException
ExtendedParser.parsePropertyValue(String).parsePropertyValue in interface ExtendedParserorg.w3c.css.sac.CSSException - Any CSS exception, possibly
wrapping another exception.IOException - An IO exception from the parser,
possibly from a byte stream or character stream
supplied by the application.public boolean parsePriority(String source) throws org.w3c.css.sac.CSSException, IOException
ExtendedParser.parsePriority(String).parsePriority in interface ExtendedParserorg.w3c.css.sac.CSSException - Any CSS exception, possibly
wrapping another exception.IOException - An IO exception from the parser,
possibly from a byte stream or character stream
supplied by the application.public org.w3c.css.sac.SACMediaList parseMedia(String mediaText) throws org.w3c.css.sac.CSSException, IOException
ExtendedParser.parseMedia(String).parseMedia in interface ExtendedParserorg.w3c.css.sac.CSSException - Any CSS exception, possibly
wrapping another exception.IOException - An IO exception from the parser,
possibly from a byte stream or character stream
supplied by the application.Copyright © 2000–2017 Apache Software Foundation. All rights reserved.