Uses of Class
org.attoparser.AttoParseException

Packages that use AttoParseException
org.attoparser   
org.attoparser.markup   
org.attoparser.markup.duplicate   
org.attoparser.markup.html   
org.attoparser.markup.html.elements   
org.attoparser.markup.html.trace   
org.attoparser.markup.trace   
org.attoparser.markup.xml   
 

Uses of AttoParseException in org.attoparser
 

Methods in org.attoparser that throw AttoParseException
 void IAttoHandler.handleDocumentEnd(int line, int col)
           Called at the end of document parsing.
 void AbstractAttoHandler.handleDocumentEnd(int line, int col)
           
 void ITimedDocumentHandling.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col)
           Called at the end of document parsing, adding timing information.
 void AbstractAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col)
           
 void IAttoHandler.handleDocumentStart(int line, int col)
           Called at the beginning of document parsing.
 void AbstractAttoHandler.handleDocumentStart(int line, int col)
           
 void ITimedDocumentHandling.handleDocumentStart(long startTimeNanos, int line, int col)
           Called at the beginning of document parsing, adding timing information.
 void AbstractAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col)
           
 void IAttoHandler.handleStructure(char[] buffer, int offset, int len, int line, int col)
           Called when a structure artifact is found.
 void AbstractAttoHandler.handleStructure(char[] buffer, int offset, int len, int line, int col)
           
 void IAttoHandler.handleText(char[] buffer, int offset, int len, int line, int col)
           Called when a text artifact is found.
 void AbstractAttoHandler.handleText(char[] buffer, int offset, int len, int line, int col)
           
 void IAttoParser.parse(char[] document, IAttoHandler handler)
           Parse a document using the specified IAttoHandler.
 void AbstractAttoParser.parse(char[] document, IAttoHandler handler)
           
 void IAttoParser.parse(char[] document, int offset, int len, IAttoHandler handler)
           Parse a document using the specified IAttoHandler.
 void AbstractAttoParser.parse(char[] document, int offset, int len, IAttoHandler handler)
           
 void IAttoParser.parse(Reader reader, IAttoHandler handler)
           Parse a document using the specified IAttoHandler.
 void AbstractAttoParser.parse(Reader reader, IAttoHandler handler)
           
 void IAttoParser.parse(String document, IAttoHandler handler)
           Parse a document using the specified IAttoHandler.
 void AbstractAttoParser.parse(String document, IAttoHandler handler)
           
protected abstract  AbstractBufferedAttoParser.BufferParseResult AbstractBufferedAttoParser.parseBuffer(char[] buffer, int offset, int len, IAttoHandler handler, int line, int col)
           Parse a buffer segment and return a AbstractBufferedAttoParser.BufferParseResult reporting the results of this parsing.
protected  void AbstractBufferedAttoParser.parseDocument(Reader reader, IAttoHandler handler)
           
protected abstract  void AbstractAttoParser.parseDocument(Reader reader, IAttoHandler handler)
           Parse the document, as a Reader.
 

Uses of AttoParseException in org.attoparser.markup
 

Methods in org.attoparser.markup that throw AttoParseException
 void IAttributeSequenceHandling.handleAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           Called when an attribute is found.
 void AbstractStandardMarkupAttoHandler.handleAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           
 void AbstractDetailedMarkupAttoHandler.handleAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           
 void AbstractStandardMarkupAttoHandler.handleAutoClosedElement(String elementName, int line, int col)
           Called when a close element (a close tag) is needed in order to correctly balance the markup.
 void IDetailedElementHandling.handleAutoCloseElementEnd(int line, int col)
           Called for signaling the end of an auto-close element, created for balancing an unclosed tag.
 void AbstractStandardMarkupAttoHandler.handleAutoCloseElementEnd(int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleAutoCloseElementEnd(int line, int col)
           
 void IDetailedElementHandling.handleAutoCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           Called for signaling the start of an auto-close element (a synthetic close tag), created for balancing an unclosed tag.
 void AbstractStandardMarkupAttoHandler.handleAutoCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleAutoCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractStandardMarkupAttoHandler.handleCDATASection(char[] buffer, int offset, int len, int line, int col)
           Called when a CDATA section is found.
 void ICDATASectionHandling.handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           Called when a CDATA section is found.
 void AbstractStandardMarkupAttoHandler.handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractBasicMarkupAttoHandler.handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void IBasicElementHandling.handleCloseElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           Called when a close element (a close tag) is found.
 void AbstractDetailedMarkupAttoHandler.handleCloseElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractBasicMarkupAttoHandler.handleCloseElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractStandardMarkupAttoHandler.handleCloseElement(String elementName, int line, int col)
           Called when a close element (a close tag) is found.
 void IDetailedElementHandling.handleCloseElementEnd(int line, int col)
           Called when the end of a close element (a close tag) is found.
 void AbstractStandardMarkupAttoHandler.handleCloseElementEnd(int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleCloseElementEnd(int line, int col)
           
 void IDetailedElementHandling.handleCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           Called when the start of a close element (a close tag) is found.
 void AbstractStandardMarkupAttoHandler.handleCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractStandardMarkupAttoHandler.handleComment(char[] buffer, int offset, int len, int line, int col)
           Called when a comment is found.
 void ICommentHandling.handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           Called when a comment is found.
 void AbstractStandardMarkupAttoHandler.handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractBasicMarkupAttoHandler.handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void IBasicDocTypeHandling.handleDocType(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           Called when a DOCTYPE clause is found.
 void AbstractDetailedMarkupAttoHandler.handleDocType(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractBasicMarkupAttoHandler.handleDocType(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void IDetailedDocTypeHandling.handleDocType(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int elementNameOffset, int elementNameLen, int elementNameLine, int elementNameCol, int typeOffset, int typeLen, int typeLine, int typeCol, int publicIdOffset, int publicIdLen, int publicIdLine, int publicIdCol, int systemIdOffset, int systemIdLen, int systemIdLine, int systemIdCol, int internalSubsetOffset, int internalSubsetLen, int internalSubsetLine, int internalSubsetCol, int outerOffset, int outerLen, int outerLine, int outerCol)
           Called when a DOCTYPE clause is found.
 void AbstractStandardMarkupAttoHandler.handleDocType(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int elementNameOffset, int elementNameLen, int elementNameLine, int elementNameCol, int typeOffset, int typeLen, int typeLine, int typeCol, int publicIdOffset, int publicIdLen, int publicIdLine, int publicIdCol, int systemIdOffset, int systemIdLen, int systemIdLine, int systemIdCol, int internalSubsetOffset, int internalSubsetLen, int internalSubsetLine, int internalSubsetCol, int outerOffset, int outerLen, int outerLine, int outerCol)
           
 void AbstractDetailedMarkupAttoHandler.handleDocType(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int elementNameOffset, int elementNameLen, int elementNameLine, int elementNameCol, int typeOffset, int typeLen, int typeLine, int typeCol, int publicIdOffset, int publicIdLen, int publicIdLine, int publicIdCol, int systemIdOffset, int systemIdLen, int systemIdLine, int systemIdCol, int internalSubsetOffset, int internalSubsetLen, int internalSubsetLine, int internalSubsetCol, int outerOffset, int outerLen, int outerLine, int outerCol)
           
 void AbstractStandardMarkupAttoHandler.handleDocType(String elementName, String publicId, String systemId, String internalSubset, int line, int col)
           Called when a DOCTYPE clause is found.
 void AbstractDetailedMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col, MarkupParsingConfiguration documentRestrictions)
           Called when document parsing ends.
 void AbstractDetailedMarkupAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col, MarkupParsingConfiguration documentRestrictions)
           Called when document parsing starts.
 void IAttributeSequenceHandling.handleInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           Called when an amount of white space is found inside an element.
 void AbstractStandardMarkupAttoHandler.handleInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           
 void IBasicElementHandling.handleOpenElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           Called when an open element (an open tag) is found.
 void AbstractDetailedMarkupAttoHandler.handleOpenElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractBasicMarkupAttoHandler.handleOpenElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractStandardMarkupAttoHandler.handleOpenElement(String elementName, Map<String,String> attributes, int line, int col)
           Called when an open element (an open tag) is found.
 void IDetailedElementHandling.handleOpenElementEnd(int line, int col)
           Called when the end of an open element (an open tag) is found.
 void AbstractStandardMarkupAttoHandler.handleOpenElementEnd(int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleOpenElementEnd(int line, int col)
           
 void IDetailedElementHandling.handleOpenElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           Called when an open element (an open tag) is found.
 void AbstractStandardMarkupAttoHandler.handleOpenElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleOpenElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void IProcessingInstructionHandling.handleProcessingInstruction(char[] buffer, int targetOffset, int targetLen, int targetLine, int targetCol, int contentOffset, int contentLen, int contentLine, int contentCol, int outerOffset, int outerLen, int line, int col)
           Called when a Processing Instruction is found.
 void AbstractStandardMarkupAttoHandler.handleProcessingInstruction(char[] buffer, int targetOffset, int targetLen, int targetLine, int targetCol, int contentOffset, int contentLen, int contentLine, int contentCol, int outerOffset, int outerLen, int line, int col)
           
 void AbstractBasicMarkupAttoHandler.handleProcessingInstruction(char[] buffer, int targetOffset, int targetLen, int targetLine, int targetCol, int contentOffset, int contentLen, int contentLine, int contentCol, int outerOffset, int outerLen, int line, int col)
           
 void AbstractStandardMarkupAttoHandler.handleProcessingInstruction(String target, String content, int line, int col)
           Called when a Processing Instruction is found.
 void IBasicElementHandling.handleStandaloneElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           Called when a standalone element (a minimized tag) is found.
 void AbstractDetailedMarkupAttoHandler.handleStandaloneElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractBasicMarkupAttoHandler.handleStandaloneElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractStandardMarkupAttoHandler.handleStandaloneElement(String elementName, Map<String,String> attributes, int line, int col)
           Called when a standalone element (a minimized tag) is found.
 void IDetailedElementHandling.handleStandaloneElementEnd(int line, int col)
           Called when the end of a standalone element (a minimized tag) is found
 void AbstractStandardMarkupAttoHandler.handleStandaloneElementEnd(int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleStandaloneElementEnd(int line, int col)
           
 void IDetailedElementHandling.handleStandaloneElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           Called when a standalone element (a minimized tag) is found.
 void AbstractStandardMarkupAttoHandler.handleStandaloneElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleStandaloneElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractBasicMarkupAttoHandler.handleStructure(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractStandardMarkupAttoHandler.handleUnmatchedClosedElement(String elementName, int line, int col)
           Called when a close element (a close tag) appears without a corresponding open element.
 void IDetailedElementHandling.handleUnmatchedCloseElementEnd(int line, int col)
           Called when the end of an unmatched close element (close tag) is found.
 void AbstractStandardMarkupAttoHandler.handleUnmatchedCloseElementEnd(int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleUnmatchedCloseElementEnd(int line, int col)
           
 void IDetailedElementHandling.handleUnmatchedCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           Called when the start of an unmatched close element (close tag) is found.
 void AbstractStandardMarkupAttoHandler.handleUnmatchedCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleUnmatchedCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void IXmlDeclarationHandling.handleXmlDeclaration(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           Called when a XML Declaration is found.
 void AbstractDetailedMarkupAttoHandler.handleXmlDeclaration(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           
 void AbstractBasicMarkupAttoHandler.handleXmlDeclaration(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           
 void AbstractStandardMarkupAttoHandler.handleXmlDeclaration(String version, String encoding, String standalone, int line, int col)
           Called when an XML Declaration is found.
 void AbstractStandardMarkupAttoHandler.handleXmlDeclarationDetail(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleXmlDeclarationDetail(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           Called when a XML Declaration is found when using a handler extending from AbstractDetailedMarkupAttoHandler.
static void AttributeSequenceMarkupParsingUtil.parseAttributeSequence(char[] buffer, int offset, int len, int line, int col, IAttributeSequenceHandling handler)
           
protected  AbstractBufferedAttoParser.BufferParseResult MarkupAttoParser.parseBuffer(char[] buffer, int offset, int len, IAttoHandler handler, int line, int col)
           
static void CdataMarkupParsingUtil.parseCdata(char[] buffer, int offset, int len, int line, int col, ICDATASectionHandling handler)
           
static void CommentMarkupParsingUtil.parseComment(char[] buffer, int offset, int len, int line, int col, ICommentHandling handler)
           
static void ElementMarkupParsingUtil.parseDetailedCloseElement(char[] buffer, int offset, int len, int line, int col, IDetailedElementHandling handler)
           
static void DocTypeMarkupParsingUtil.parseDetailedDocType(char[] buffer, int offset, int len, int line, int col, IDetailedDocTypeHandling handler)
           
static void ElementMarkupParsingUtil.parseDetailedOpenElement(char[] buffer, int offset, int len, int line, int col, IDetailedElementHandling handler)
           
static void ElementMarkupParsingUtil.parseDetailedStandaloneElement(char[] buffer, int offset, int len, int line, int col, IDetailedElementHandling handler)
           
static void DocTypeMarkupParsingUtil.parseDocType(char[] buffer, int offset, int len, int line, int col, IBasicDocTypeHandling handler)
           
static void ElementMarkupParsingUtil.parseElement(char[] buffer, int offset, int len, int line, int col, IBasicElementHandling handler)
           
static void ProcessingInstructionMarkupParsingUtil.parseProcessingInstruction(char[] buffer, int offset, int len, int line, int col, IProcessingInstructionHandling handler)
           
static void XmlDeclarationMarkupParsingUtil.parseXmlDeclaration(char[] buffer, int offset, int len, int line, int col, IXmlDeclarationHandling handler)
           
static boolean AttributeSequenceMarkupParsingUtil.tryParseAttributeSequence(char[] buffer, int offset, int len, int line, int col, IAttributeSequenceHandling handler)
           
static boolean CdataMarkupParsingUtil.tryParseCdata(char[] buffer, int offset, int len, int line, int col, ICDATASectionHandling handler)
           
static boolean CommentMarkupParsingUtil.tryParseComment(char[] buffer, int offset, int len, int line, int col, ICommentHandling handler)
           
static boolean ElementMarkupParsingUtil.tryParseDetailedCloseElement(char[] buffer, int offset, int len, int line, int col, IDetailedElementHandling handler)
           
static boolean DocTypeMarkupParsingUtil.tryParseDetailedDocType(char[] buffer, int offset, int len, int line, int col, IDetailedDocTypeHandling handler)
           
static boolean ElementMarkupParsingUtil.tryParseDetailedOpenElement(char[] buffer, int offset, int len, int line, int col, IDetailedElementHandling handler)
           
static boolean ElementMarkupParsingUtil.tryParseDetailedStandaloneElement(char[] buffer, int offset, int len, int line, int col, IDetailedElementHandling handler)
           
static boolean DocTypeMarkupParsingUtil.tryParseDocType(char[] buffer, int offset, int len, int line, int col, IBasicDocTypeHandling handler)
           
static boolean ElementMarkupParsingUtil.tryParseElement(char[] buffer, int offset, int len, int line, int col, IBasicElementHandling handler)
           
static boolean ProcessingInstructionMarkupParsingUtil.tryParseProcessingInstruction(char[] buffer, int offset, int len, int line, int col, IProcessingInstructionHandling handler)
           
static boolean XmlDeclarationMarkupParsingUtil.tryParseXmlDeclaration(char[] buffer, int offset, int len, int line, int col, IXmlDeclarationHandling handler)
           
 

Uses of AttoParseException in org.attoparser.markup.duplicate
 

Methods in org.attoparser.markup.duplicate that throw AttoParseException
 void DuplicatingDetailedMarkupAttoHandler.handleAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           
 void DuplicatingDetailedMarkupAttoHandler.handleAutoCloseElementEnd(int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleAutoCloseElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingBasicMarkupAttoHandler.handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingBasicMarkupAttoHandler.handleCloseElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleCloseElementEnd(int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleCloseElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingBasicMarkupAttoHandler.handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingBasicMarkupAttoHandler.handleDocType(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleDocType(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int elementNameOffset, int elementNameLen, int elementNameLine, int elementNameCol, int typeOffset, int typeLen, int typeLine, int typeCol, int publicIdOffset, int publicIdLen, int publicIdLine, int publicIdCol, int systemIdOffset, int systemIdLen, int systemIdLine, int systemIdCol, int internalSubsetOffset, int internalSubsetLen, int internalSubsetLine, int internalSubsetCol, int outerOffset, int outerLen, int outerLine, int outerCol)
           
 void DuplicatingBasicMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col, MarkupParsingConfiguration markupParsingConfiguration)
           
 void DuplicatingBasicMarkupAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col, MarkupParsingConfiguration markupParsingConfiguration)
           
 void DuplicatingDetailedMarkupAttoHandler.handleInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           
 void DuplicatingBasicMarkupAttoHandler.handleOpenElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleOpenElementEnd(int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleOpenElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleProcessingInstruction(char[] buffer, int targetOffset, int targetLen, int targetLine, int targetCol, int contentOffset, int contentLen, int contentLine, int contentCol, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingBasicMarkupAttoHandler.handleProcessingInstruction(char[] buffer, int targetOffset, int targetLen, int targetLine, int targetCol, int contentOffset, int contentLen, int contentLine, int contentCol, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingBasicMarkupAttoHandler.handleStandaloneElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleStandaloneElementEnd(int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleStandaloneElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleText(char[] buffer, int offset, int len, int line, int col)
           
 void DuplicatingBasicMarkupAttoHandler.handleText(char[] buffer, int offset, int len, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleUnmatchedCloseElementEnd(int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleUnmatchedCloseElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void DuplicatingBasicMarkupAttoHandler.handleXmlDeclaration(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleXmlDeclarationDetail(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           
 

Uses of AttoParseException in org.attoparser.markup.html
 

Methods in org.attoparser.markup.html that throw AttoParseException
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleAutoCloseElementEnd(int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleAutoCloseElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractStandardNonValidatingHtmlAttoHandler.handleCDATASection(char[] buffer, int offset, int len, int line, int col)
           Called when a CDATA section is found.
 void AbstractStandardNonValidatingHtmlAttoHandler.handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleCloseElementEnd(int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleCloseElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractStandardNonValidatingHtmlAttoHandler.handleComment(char[] buffer, int offset, int len, int line, int col)
           Called when a comment is found.
 void AbstractStandardNonValidatingHtmlAttoHandler.handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractStandardNonValidatingHtmlAttoHandler.handleDocType(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int elementNameOffset, int elementNameLen, int elementNameLine, int elementNameCol, int typeOffset, int typeLen, int typeLine, int typeCol, int publicIdOffset, int publicIdLen, int publicIdLine, int publicIdCol, int systemIdOffset, int systemIdLen, int systemIdLine, int systemIdCol, int internalSubsetOffset, int internalSubsetLen, int internalSubsetLine, int internalSubsetCol, int outerOffset, int outerLen, int outerLine, int outerCol)
           
 void AbstractStandardNonValidatingHtmlAttoHandler.handleDocType(String elementName, String publicId, String systemId, String internalSubset, int line, int col)
           Called when a DOCTYPE clause is found.
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col, HtmlParsingConfiguration parsingConfiguration)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col, MarkupParsingConfiguration markupParsingConfiguration)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col, HtmlParsingConfiguration parsingConfiguration)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col, MarkupParsingConfiguration markupParsingConfiguration)
           
 void IHtmlAttributeSequenceHandling.handleHtmlAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           Called when an attribute is found.
 void AbstractStandardNonValidatingHtmlAttoHandler.handleHtmlAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleHtmlAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           
 void AbstractStandardNonValidatingHtmlAttoHandler.handleHtmlCloseElement(IHtmlElement element, String elementName, int line, int col)
           Called when a close element (a close tag) is found.
 void IDetailedHtmlElementHandling.handleHtmlCloseElementEnd(IHtmlElement element, int line, int col)
           Called when the end of a close element (a close tag) is found.
 void AbstractStandardNonValidatingHtmlAttoHandler.handleHtmlCloseElementEnd(IHtmlElement element, int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleHtmlCloseElementEnd(IHtmlElement element, int line, int col)
           
 void IDetailedHtmlElementHandling.handleHtmlCloseElementStart(IHtmlElement element, char[] buffer, int nameOffset, int nameLen, int line, int col)
           Called when the start of a close element (a close tag) is found.
 void AbstractStandardNonValidatingHtmlAttoHandler.handleHtmlCloseElementStart(IHtmlElement element, char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleHtmlCloseElementStart(IHtmlElement element, char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void IHtmlAttributeSequenceHandling.handleHtmlInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           Called when an amount of white space is found inside an element.
 void AbstractStandardNonValidatingHtmlAttoHandler.handleHtmlInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleHtmlInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractStandardNonValidatingHtmlAttoHandler.handleHtmlOpenElement(IHtmlElement element, String elementName, Map<String,String> attributes, int line, int col)
           Called when an open element (an open tag) is found.
 void IDetailedHtmlElementHandling.handleHtmlOpenElementEnd(IHtmlElement element, int line, int col)
           Called when the end of an open element (an open tag) is found.
 void AbstractStandardNonValidatingHtmlAttoHandler.handleHtmlOpenElementEnd(IHtmlElement element, int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleHtmlOpenElementEnd(IHtmlElement element, int line, int col)
           
 void IDetailedHtmlElementHandling.handleHtmlOpenElementStart(IHtmlElement element, char[] buffer, int nameOffset, int nameLen, int line, int col)
           Called when the start of an open element (an open tag) is found.
 void AbstractStandardNonValidatingHtmlAttoHandler.handleHtmlOpenElementStart(IHtmlElement element, char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleHtmlOpenElementStart(IHtmlElement element, char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractStandardNonValidatingHtmlAttoHandler.handleHtmlStandaloneElement(IHtmlElement element, boolean minimized, String elementName, Map<String,String> attributes, int line, int col)
           Called when a standalone element (a minimized tag) is found.
 void IDetailedHtmlElementHandling.handleHtmlStandaloneElementEnd(IHtmlElement element, boolean minimized, int line, int col)
           Called when the end of a standalone element is found.
 void AbstractStandardNonValidatingHtmlAttoHandler.handleHtmlStandaloneElementEnd(IHtmlElement element, boolean minimized, int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleHtmlStandaloneElementEnd(IHtmlElement element, boolean minimized, int line, int col)
           
 void IDetailedHtmlElementHandling.handleHtmlStandaloneElementStart(IHtmlElement element, boolean minimized, char[] buffer, int nameOffset, int nameLen, int line, int col)
           Called when the start of a standalone element is found.
 void AbstractStandardNonValidatingHtmlAttoHandler.handleHtmlStandaloneElementStart(IHtmlElement element, boolean minimized, char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleHtmlStandaloneElementStart(IHtmlElement element, boolean minimized, char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleOpenElementEnd(int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleOpenElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractStandardNonValidatingHtmlAttoHandler.handleProcessingInstruction(char[] buffer, int targetOffset, int targetLen, int targetLine, int targetCol, int contentOffset, int contentLen, int contentLine, int contentCol, int outerOffset, int outerLen, int line, int col)
           
 void AbstractStandardNonValidatingHtmlAttoHandler.handleProcessingInstruction(String target, String content, int line, int col)
           Called when a Processing Instruction is found.
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleStandaloneElementEnd(int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleStandaloneElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleUnmatchedCloseElementEnd(int line, int col)
           
 void AbstractDetailedNonValidatingHtmlAttoHandler.handleUnmatchedCloseElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractStandardNonValidatingHtmlAttoHandler.handleXmlDeclaration(String version, String encoding, String standalone, int line, int col)
           Called when an XML Declaration is found.
 void AbstractStandardNonValidatingHtmlAttoHandler.handleXmlDeclarationDetail(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           
 

Uses of AttoParseException in org.attoparser.markup.html.elements
 

Methods in org.attoparser.markup.html.elements that throw AttoParseException
 void IHtmlElement.handleAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void IHtmlElement.handleAutoCloseElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleAutoCloseElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void IHtmlElement.handleAutoCloseElementStart(char[] buffer, int offset, int len, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleAutoCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void StandaloneHtmlElement.handleCloseElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void IHtmlElement.handleCloseElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleCloseElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void StandaloneHtmlElement.handleCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void IHtmlElement.handleCloseElementStart(char[] buffer, int offset, int len, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void IHtmlElement.handleInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void StandaloneHtmlElement.handleOpenElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void IHtmlElement.handleOpenElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleOpenElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void StandaloneHtmlElement.handleOpenElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void IHtmlElement.handleOpenElementStart(char[] buffer, int offset, int len, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleOpenElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void IHtmlElement.handleStandaloneElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleStandaloneElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void IHtmlElement.handleStandaloneElementStart(char[] buffer, int offset, int len, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleStandaloneElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void IHtmlElement.handleUnmatchedCloseElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleUnmatchedCloseElementEnd(int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void IHtmlElement.handleUnmatchedCloseElementStart(char[] buffer, int offset, int len, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 void BasicHtmlElement.handleUnmatchedCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col, HtmlElementStack stack, IDetailedHtmlElementHandling handler)
           
 

Uses of AttoParseException in org.attoparser.markup.html.trace
 

Methods in org.attoparser.markup.html.trace that throw AttoParseException
 void TracingDetailedHtmlAttoHandler.handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void TracingDetailedHtmlAttoHandler.handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void TracingDetailedHtmlAttoHandler.handleDocType(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int elementNameOffset, int elementNameLen, int elementNameLine, int elementNameCol, int typeOffset, int typeLen, int typeLine, int typeCol, int publicIdOffset, int publicIdLen, int publicIdLine, int publicIdCol, int systemIdOffset, int systemIdLen, int systemIdLine, int systemIdCol, int internalSubsetOffset, int internalSubsetLen, int internalSubsetLine, int internalSubsetCol, int outerOffset, int outerLen, int outerLine, int outerCol)
           
 void HtmlCodeDisplayAttoHandler.handleDocType(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int elementNameOffset, int elementNameLen, int elementNameLine, int elementNameCol, int typeOffset, int typeLen, int typeLine, int typeCol, int publicIdOffset, int publicIdLen, int publicIdLine, int publicIdCol, int systemIdOffset, int systemIdLen, int systemIdLine, int systemIdCol, int internalSubsetOffset, int internalSubsetLen, int internalSubsetLine, int internalSubsetCol, int outerOffset, int outerLen, int outerLine, int outerCol)
           
 void TracingDetailedHtmlAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col, HtmlParsingConfiguration configuration)
           
 void HtmlCodeDisplayAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col, HtmlParsingConfiguration configuration)
           
 void TracingDetailedHtmlAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col, HtmlParsingConfiguration configuration)
           
 void HtmlCodeDisplayAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col, HtmlParsingConfiguration configuration)
           
 void TracingDetailedHtmlAttoHandler.handleHtmlAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           
 void HtmlCodeDisplayAttoHandler.handleHtmlAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           
 void TracingDetailedHtmlAttoHandler.handleHtmlCloseElementEnd(IHtmlElement element, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleHtmlCloseElementEnd(IHtmlElement element, int line, int col)
           
 void TracingDetailedHtmlAttoHandler.handleHtmlCloseElementStart(IHtmlElement element, char[] buffer, int offset, int len, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleHtmlCloseElementStart(IHtmlElement element, char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedHtmlAttoHandler.handleHtmlInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleHtmlInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedHtmlAttoHandler.handleHtmlOpenElementEnd(IHtmlElement element, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleHtmlOpenElementEnd(IHtmlElement element, int line, int col)
           
 void TracingDetailedHtmlAttoHandler.handleHtmlOpenElementStart(IHtmlElement element, char[] buffer, int offset, int len, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleHtmlOpenElementStart(IHtmlElement element, char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedHtmlAttoHandler.handleHtmlStandaloneElementEnd(IHtmlElement element, boolean minimized, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleHtmlStandaloneElementEnd(IHtmlElement element, boolean minimized, int line, int col)
           
 void TracingDetailedHtmlAttoHandler.handleHtmlStandaloneElementStart(IHtmlElement element, boolean minimized, char[] buffer, int offset, int len, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleHtmlStandaloneElementStart(IHtmlElement element, boolean minimized, char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedHtmlAttoHandler.handleProcessingInstruction(char[] buffer, int targetOffset, int targetLen, int targetLine, int targetCol, int contentOffset, int contentLen, int contentLine, int contentCol, int outerOffset, int outerLen, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleProcessingInstruction(char[] buffer, int targetOffset, int targetLen, int targetLine, int targetCol, int contentOffset, int contentLen, int contentLine, int contentCol, int outerOffset, int outerLen, int line, int col)
           
 void TracingDetailedHtmlAttoHandler.handleText(char[] buffer, int offset, int len, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleText(char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedHtmlAttoHandler.handleXmlDeclarationDetail(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           
 void HtmlCodeDisplayAttoHandler.handleXmlDeclarationDetail(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           
 

Uses of AttoParseException in org.attoparser.markup.trace
 

Methods in org.attoparser.markup.trace that throw AttoParseException
 void TracingDetailedMarkupAttoHandler.handleAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           
 void TracingStandardMarkupAttoHandler.handleAutoClosedElement(String elementName, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleAutoCloseElementEnd(int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleAutoCloseElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void TracingStandardMarkupAttoHandler.handleCDATASection(char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void TracingBasicMarkupAttoHandler.handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void TracingBasicMarkupAttoHandler.handleCloseElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void TracingStandardMarkupAttoHandler.handleCloseElement(String elementName, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleCloseElementEnd(int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleCloseElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void TracingStandardMarkupAttoHandler.handleComment(char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void TracingBasicMarkupAttoHandler.handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void TracingBasicMarkupAttoHandler.handleDocType(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleDocType(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int elementNameOffset, int elementNameLen, int elementNameLine, int elementNameCol, int typeOffset, int typeLen, int typeLine, int typeCol, int publicIdOffset, int publicIdLen, int publicIdLine, int publicIdCol, int systemIdOffset, int systemIdLen, int systemIdLine, int systemIdCol, int internalSubsetOffset, int internalSubsetLen, int internalSubsetLine, int internalSubsetCol, int outerOffset, int outerLen, int outerLine, int outerCol)
           
 void TracingStandardMarkupAttoHandler.handleDocType(String elementName, String publicId, String systemId, String internalSubset, int line, int col)
           
 void TracingBasicMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col)
           
 void TracingStandardMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col, MarkupParsingConfiguration markupParsingConfiguration)
           
 void TracingDetailedMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col, MarkupParsingConfiguration markupParsingConfiguration)
           
 void TracingBasicMarkupAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col)
           
 void TracingStandardMarkupAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col, MarkupParsingConfiguration markupParsingConfiguration)
           
 void TracingDetailedMarkupAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col, MarkupParsingConfiguration markupParsingConfiguration)
           
 void TracingDetailedMarkupAttoHandler.handleInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           
 void TracingBasicMarkupAttoHandler.handleOpenElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void TracingStandardMarkupAttoHandler.handleOpenElement(String elementName, Map<String,String> attributes, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleOpenElementEnd(int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleOpenElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleProcessingInstruction(char[] buffer, int targetOffset, int targetLen, int targetLine, int targetCol, int contentOffset, int contentLen, int contentLine, int contentCol, int outerOffset, int outerLen, int line, int col)
           
 void TracingBasicMarkupAttoHandler.handleProcessingInstruction(char[] buffer, int targetOffset, int targetLen, int targetLine, int targetCol, int contentOffset, int contentLen, int contentLine, int contentCol, int outerOffset, int outerLen, int line, int col)
           
 void TracingStandardMarkupAttoHandler.handleProcessingInstruction(String target, String content, int line, int col)
           
 void TracingBasicMarkupAttoHandler.handleStandaloneElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void TracingStandardMarkupAttoHandler.handleStandaloneElement(String elementName, Map<String,String> attributes, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleStandaloneElementEnd(int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleStandaloneElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void TracingStandardMarkupAttoHandler.handleText(char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleText(char[] buffer, int offset, int len, int line, int col)
           
 void TracingBasicMarkupAttoHandler.handleText(char[] buffer, int offset, int len, int line, int col)
           
 void TracingStandardMarkupAttoHandler.handleUnmatchedClosedElement(String elementName, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleUnmatchedCloseElementEnd(int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleUnmatchedCloseElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void TracingBasicMarkupAttoHandler.handleXmlDeclaration(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           
 void TracingStandardMarkupAttoHandler.handleXmlDeclaration(String version, String encoding, String standalone, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleXmlDeclarationDetail(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           
 

Uses of AttoParseException in org.attoparser.markup.xml
 

Methods in org.attoparser.markup.xml that throw AttoParseException
 void AbstractStandardXmlAttoHandler.handleAttribute(char[] buffer, int nameOffset, int nameLen, int nameLine, int nameCol, int operatorOffset, int operatorLen, int operatorLine, int operatorCol, int valueContentOffset, int valueContentLen, int valueOuterOffset, int valueOuterLen, int valueLine, int valueCol)
           
 void AbstractDetailedXmlAttoHandler.handleAutoCloseElementEnd(int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleAutoCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void DOMXmlAttoHandler.handleCDATASection(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractStandardXmlAttoHandler.handleCDATASection(char[] buffer, int offset, int len, int line, int col)
           Called when a CDATA section is found.
 void AbstractStandardXmlAttoHandler.handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleCloseElementEnd(int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void DOMXmlAttoHandler.handleComment(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractStandardXmlAttoHandler.handleComment(char[] buffer, int offset, int len, int line, int col)
           Called when a comment is found.
 void AbstractStandardXmlAttoHandler.handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void AbstractStandardXmlAttoHandler.handleDocType(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int elementNameOffset, int elementNameLen, int elementNameLine, int elementNameCol, int typeOffset, int typeLen, int typeLine, int typeCol, int publicIdOffset, int publicIdLen, int publicIdLine, int publicIdCol, int systemIdOffset, int systemIdLen, int systemIdLine, int systemIdCol, int internalSubsetOffset, int internalSubsetLen, int internalSubsetLine, int internalSubsetCol, int outerOffset, int outerLen, int outerLine, int outerCol)
           
 void DOMXmlAttoHandler.handleDocType(String elementName, String publicId, String systemId, String internalSubset, int line, int col)
           
 void AbstractStandardXmlAttoHandler.handleDocType(String elementName, String publicId, String systemId, String internalSubset, int line, int col)
           Called when a DOCTYPE clause is found.
 void AbstractDetailedXmlAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col, MarkupParsingConfiguration documentRestrictions)
           
 void AbstractDetailedXmlAttoHandler.handleDocumentStart(long startTimeNanos, int line, int col, MarkupParsingConfiguration documentRestrictions)
           
 void AbstractStandardXmlAttoHandler.handleInnerWhiteSpace(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleOpenElementEnd(int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleOpenElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractStandardXmlAttoHandler.handleProcessingInstruction(char[] buffer, int targetOffset, int targetLen, int targetLine, int targetCol, int contentOffset, int contentLen, int contentLine, int contentCol, int outerOffset, int outerLen, int line, int col)
           
 void DOMXmlAttoHandler.handleProcessingInstruction(String target, String content, int line, int col)
           
 void AbstractStandardXmlAttoHandler.handleProcessingInstruction(String target, String content, int line, int col)
           Called when a Processing Instruction is found.
 void AbstractDetailedXmlAttoHandler.handleStandaloneElementEnd(int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleStandaloneElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void DOMXmlAttoHandler.handleText(char[] buffer, int offset, int len, int line, int col)
           
 void DOMXmlAttoHandler.handleXmlCloseElement(String elementName, int line, int col)
           
 void AbstractStandardXmlAttoHandler.handleXmlCloseElement(String elementName, int line, int col)
           Called when a close element (a close tag) is found.
 void IDetailedXmlElementHandling.handleXmlCloseElementEnd(int line, int col)
           Called when the end of a close element (a close tag) is found.
 void AbstractStandardXmlAttoHandler.handleXmlCloseElementEnd(int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleXmlCloseElementEnd(int line, int col)
           
 void IDetailedXmlElementHandling.handleXmlCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           Called when a close element (a close tag) is found.
 void AbstractStandardXmlAttoHandler.handleXmlCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleXmlCloseElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void DOMXmlAttoHandler.handleXmlDeclaration(String version, String encoding, String standalone, int line, int col)
           
 void AbstractStandardXmlAttoHandler.handleXmlDeclaration(String version, String encoding, String standalone, int line, int col)
           Called when an XML Declaration is found.
 void AbstractStandardXmlAttoHandler.handleXmlDeclarationDetail(char[] buffer, int keywordOffset, int keywordLen, int keywordLine, int keywordCol, int versionOffset, int versionLen, int versionLine, int versionCol, int encodingOffset, int encodingLen, int encodingLine, int encodingCol, int standaloneOffset, int standaloneLen, int standaloneLine, int standaloneCol, int outerOffset, int outerLen, int line, int col)
           
 void DOMXmlAttoHandler.handleXmlDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleXmlDocumentEnd(long endTimeNanos, long totalTimeNanos, int line, int col)
           
 void DOMXmlAttoHandler.handleXmlDocumentStart(long startTimeNanos, int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleXmlDocumentStart(long startTimeNanos, int line, int col)
           
 void DOMXmlAttoHandler.handleXmlOpenElement(String elementName, Map<String,String> attributes, int line, int col)
           
 void AbstractStandardXmlAttoHandler.handleXmlOpenElement(String elementName, Map<String,String> attributes, int line, int col)
           Called when an open element (an open tag) is found.
 void IDetailedXmlElementHandling.handleXmlOpenElementEnd(int line, int col)
           Called when the end of an open element (an open tag) is found.
 void AbstractStandardXmlAttoHandler.handleXmlOpenElementEnd(int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleXmlOpenElementEnd(int line, int col)
           
 void IDetailedXmlElementHandling.handleXmlOpenElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           Called when an open element (an open tag) is found.
 void AbstractStandardXmlAttoHandler.handleXmlOpenElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleXmlOpenElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void DOMXmlAttoHandler.handleXmlStandaloneElement(String elementName, Map<String,String> attributes, int line, int col)
           
 void AbstractStandardXmlAttoHandler.handleXmlStandaloneElement(String elementName, Map<String,String> attributes, int line, int col)
           Called when a standalone element (a minimized tag) is found.
 void IDetailedXmlElementHandling.handleXmlStandaloneElementEnd(int line, int col)
           Called when the end of a standalone element (a minimized tag) is found.
 void AbstractStandardXmlAttoHandler.handleXmlStandaloneElementEnd(int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleXmlStandaloneElementEnd(int line, int col)
           
 void IDetailedXmlElementHandling.handleXmlStandaloneElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           Called when a standalone element (a minimized tag) is found.
 void AbstractStandardXmlAttoHandler.handleXmlStandaloneElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 void AbstractDetailedXmlAttoHandler.handleXmlStandaloneElementStart(char[] buffer, int nameOffset, int nameLen, int line, int col)
           
 



Copyright © 2012 The ATTOPARSER team. All Rights Reserved.