Package eu.simuline.util.sgml
Interface SGMLParser.XMLsGMLspecifica
-
- Enclosing class:
- SGMLParser
static interface SGMLParser.XMLsGMLspecificaProvides a bunch of methods fpr parsing with implementations specific to xml and sgml.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidparseAttribute(SGMLParser.AttributesWrapper attributes)Parses one attribute and adds it to the given attribute list.voidparseCommentElemTypeDecl()Parses a comment or any declaration starting with<!...voidparseExtProcessingInstruction()Parses a processing instruction or any declaration starting with<?...
-
-
-
Method Detail
-
parseAttribute
void parseAttribute(SGMLParser.AttributesWrapper attributes) throws IOException, SAXException
Parses one attribute and adds it to the given attribute list.- Parameters:
attributes- anAttributesImplto which the attribute parsed is added.- Throws:
IOException- if an io-error occursSAXException- if a syntactical error occurs
-
parseCommentElemTypeDecl
void parseCommentElemTypeDecl() throws IOException, SAXExceptionParses a comment or any declaration starting with<!...and notifying the handler.- Throws:
IOException- if an io-error occursSAXException- if a syntactical error occurs
-
parseExtProcessingInstruction
void parseExtProcessingInstruction() throws IOException, SAXExceptionParses a processing instruction or any declaration starting with<?...and notifying the handler.- Throws:
IOException- if an io-error occursSAXException- if a syntactical error occurs
-
-