Class PatternParser
- java.lang.Object
-
- org.xml.sax.helpers.DefaultHandler
-
- org.apache.lucene.analysis.compound.hyphenation.PatternParser
-
- All Implemented Interfaces:
ContentHandler,DTDHandler,EntityResolver,ErrorHandler
public class PatternParser extends DefaultHandler
A SAX document handler to read and parse hyphenation patterns from a XML file. This class has been taken from the Apache FOP project (http://xmlgraphics.apache.org/fop/). They have been slightly modified.
-
-
Constructor Summary
Constructors Constructor Description PatternParser()PatternParser(PatternConsumer consumer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcharacters(char[] ch, int start, int length)voidendElement(String uri, String local, String raw)voidparse(File file)Parses a hyphenation pattern file.voidparse(String filename)Parses a hyphenation pattern file.voidparse(InputSource source)Parses a hyphenation pattern file.InputSourceresolveEntity(String publicId, String systemId)voidsetConsumer(PatternConsumer consumer)voidstartElement(String uri, String local, String raw, Attributes attrs)-
Methods inherited from class org.xml.sax.helpers.DefaultHandler
endDocument, endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, setDocumentLocator, skippedEntity, startDocument, startPrefixMapping, unparsedEntityDecl, warning
-
-
-
-
Constructor Detail
-
PatternParser
public PatternParser()
-
PatternParser
public PatternParser(PatternConsumer consumer)
-
-
Method Detail
-
setConsumer
public void setConsumer(PatternConsumer consumer)
-
parse
public void parse(String filename) throws IOException
Parses a hyphenation pattern file.- Parameters:
filename- the filename- Throws:
IOException- In case of an exception while parsing
-
parse
public void parse(File file) throws IOException
Parses a hyphenation pattern file.- Parameters:
file- the pattern file- Throws:
IOException- In case of an exception while parsing
-
parse
public void parse(InputSource source) throws IOException
Parses a hyphenation pattern file.- Parameters:
source- the InputSource for the file- Throws:
IOException- In case of an exception while parsing
-
resolveEntity
public InputSource resolveEntity(String publicId, String systemId)
- Specified by:
resolveEntityin interfaceEntityResolver- Overrides:
resolveEntityin classDefaultHandler
-
startElement
public void startElement(String uri, String local, String raw, Attributes attrs)
- Specified by:
startElementin interfaceContentHandler- Overrides:
startElementin classDefaultHandler- See Also:
ContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
-
endElement
public void endElement(String uri, String local, String raw)
- Specified by:
endElementin interfaceContentHandler- Overrides:
endElementin classDefaultHandler- See Also:
ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
-
characters
public void characters(char[] ch, int start, int length)- Specified by:
charactersin interfaceContentHandler- Overrides:
charactersin classDefaultHandler- See Also:
ContentHandler.characters(char[], int, int)
-
-