Package org.jorigin.lang.xml
Class LangResourceContentHandler
- java.lang.Object
-
- org.jorigin.lang.xml.LangResourceContentHandler
-
- All Implemented Interfaces:
org.xml.sax.ContentHandler
public class LangResourceContentHandler extends java.lang.Object implements org.xml.sax.ContentHandlerA content handler for the lang resource XML files.- Since:
- 1.0.0
- Version:
- "1.0.9" - b201903071030L
- Author:
- Julien Seinturier - COMEX S.A. - contact@jorigin.org - https://github.com/jorigin/jeometry
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringATTRIBUTE_KEYThe name of the resource key attributestatic java.lang.StringATTRIBUTE_VALUEThe name of the resource value attribute.static java.lang.StringELEMENT_RESOURCEThe name of the resource XML elementstatic java.lang.StringELEMENT_RESOURCESThe name of the resource list XML elementprotected org.xml.sax.LocatorlocatorHold onto the locator for location information
-
Constructor Summary
Constructors Constructor Description LangResourceContentHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcharacters(char[] ch, int start, int length)voidendDocument()voidendElement(java.lang.String uri, java.lang.String localName, java.lang.String qName)voidendPrefixMapping(java.lang.String prefix)java.util.HashMap<java.lang.String,java.lang.String>getResources()Get the resources attached to this content handler.voidignorableWhitespace(char[] ch, int start, int length)voidprocessingInstruction(java.lang.String target, java.lang.String data)voidsetDocumentLocator(org.xml.sax.Locator locator)voidskippedEntity(java.lang.String name)voidstartDocument()voidstartElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, org.xml.sax.Attributes atts)voidstartPrefixMapping(java.lang.String prefix, java.lang.String uri)
-
-
-
Field Detail
-
ELEMENT_RESOURCES
public static java.lang.String ELEMENT_RESOURCES
The name of the resource list XML element
-
ELEMENT_RESOURCE
public static java.lang.String ELEMENT_RESOURCE
The name of the resource XML element
-
ATTRIBUTE_KEY
public static java.lang.String ATTRIBUTE_KEY
The name of the resource key attribute
-
ATTRIBUTE_VALUE
public static java.lang.String ATTRIBUTE_VALUE
The name of the resource value attribute.
-
locator
protected org.xml.sax.Locator locator
Hold onto the locator for location information
-
-
Method Detail
-
getResources
public java.util.HashMap<java.lang.String,java.lang.String> getResources()
Get the resources attached to this content handler.- Returns:
- the resources attached to this content handler.
-
characters
public void characters(char[] ch, int start, int length) throws org.xml.sax.SAXException- Specified by:
charactersin interfaceorg.xml.sax.ContentHandler- Throws:
org.xml.sax.SAXException
-
endDocument
public void endDocument() throws org.xml.sax.SAXException- Specified by:
endDocumentin interfaceorg.xml.sax.ContentHandler- Throws:
org.xml.sax.SAXException
-
endElement
public void endElement(java.lang.String uri, java.lang.String localName, java.lang.String qName) throws org.xml.sax.SAXException- Specified by:
endElementin interfaceorg.xml.sax.ContentHandler- Throws:
org.xml.sax.SAXException
-
endPrefixMapping
public void endPrefixMapping(java.lang.String prefix) throws org.xml.sax.SAXException- Specified by:
endPrefixMappingin interfaceorg.xml.sax.ContentHandler- Throws:
org.xml.sax.SAXException
-
ignorableWhitespace
public void ignorableWhitespace(char[] ch, int start, int length) throws org.xml.sax.SAXException- Specified by:
ignorableWhitespacein interfaceorg.xml.sax.ContentHandler- Throws:
org.xml.sax.SAXException
-
processingInstruction
public void processingInstruction(java.lang.String target, java.lang.String data) throws org.xml.sax.SAXException- Specified by:
processingInstructionin interfaceorg.xml.sax.ContentHandler- Throws:
org.xml.sax.SAXException
-
setDocumentLocator
public void setDocumentLocator(org.xml.sax.Locator locator)
- Specified by:
setDocumentLocatorin interfaceorg.xml.sax.ContentHandler
-
skippedEntity
public void skippedEntity(java.lang.String name) throws org.xml.sax.SAXException- Specified by:
skippedEntityin interfaceorg.xml.sax.ContentHandler- Throws:
org.xml.sax.SAXException
-
startDocument
public void startDocument() throws org.xml.sax.SAXException- Specified by:
startDocumentin interfaceorg.xml.sax.ContentHandler- Throws:
org.xml.sax.SAXException
-
startElement
public void startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, org.xml.sax.Attributes atts) throws org.xml.sax.SAXException- Specified by:
startElementin interfaceorg.xml.sax.ContentHandler- Throws:
org.xml.sax.SAXException
-
startPrefixMapping
public void startPrefixMapping(java.lang.String prefix, java.lang.String uri) throws org.xml.sax.SAXException- Specified by:
startPrefixMappingin interfaceorg.xml.sax.ContentHandler- Throws:
org.xml.sax.SAXException
-
-