Uses of Class
org.attoparser.AttoParseException

Packages that use AttoParseException
org.attoparser   
org.attoparser.markup   
org.attoparser.markup.dom   
org.attoparser.markup.duplicate   
org.attoparser.markup.trace   
 

Uses of AttoParseException in org.attoparser
 

Methods in org.attoparser that throw AttoParseException
 void IAttoHandler.handleDocumentEnd()
           Called at the end of document parsing.
 void AbstractAttoHandler.handleDocumentEnd()
           
 void ITimedDocumentHandling.handleDocumentEnd(long endTimeNanos, long totalTimeNanos)
           Called at the end of document parsing, adding timing information.
 void AbstractAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos)
           
 void IAttoHandler.handleDocumentStart()
           Called at the beginning of document parsing.
 void AbstractAttoHandler.handleDocumentStart()
           
 void ITimedDocumentHandling.handleDocumentStart(long startTimeNanos)
           Called at the beginning of document parsing, adding timing information.
 void AbstractAttoHandler.handleDocumentStart(long startTimeNanos)
           
 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 IAttributeSequenceHandling.handleAttributeSeparator(char[] buffer, int offset, int len, int line, int col)
           Called when a separation between attributes is found.
 void AbstractStandardMarkupAttoHandler.handleAttributeSeparator(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleAttributeSeparator(char[] buffer, int offset, int len, 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(char[] buffer, int offset, int len, int line, int col)
           Called when the end of a close element (a close tag) is found.
 void AbstractStandardMarkupAttoHandler.handleCloseElementEnd(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleCloseElementEnd(char[] buffer, int offset, int len, int line, int col)
           
 void IDetailedElementHandling.handleCloseElementName(char[] buffer, int offset, int len, int line, int col)
           Called when the name of a close element (a close tag) is found.
 void AbstractStandardMarkupAttoHandler.handleCloseElementName(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleCloseElementName(char[] buffer, int offset, int len, int line, int col)
           
 void IDetailedElementHandling.handleCloseElementStart(char[] buffer, int offset, int len, int line, int col)
           Called when the start of a close element (a close tag) is found.
 void AbstractStandardMarkupAttoHandler.handleCloseElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleCloseElementStart(char[] buffer, int offset, int len, 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)
           
 void AbstractDetailedMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, DocumentRestrictions documentRestrictions)
           Called when document parsing ends.
 void AbstractDetailedMarkupAttoHandler.handleDocumentStart(long startTimeNanos)
           
 void AbstractDetailedMarkupAttoHandler.handleDocumentStart(long startTimeNanos, DocumentRestrictions documentRestrictions)
           Called when document parsing starts.
 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(char[] buffer, int offset, int len, int line, int col)
           Called when the end of an open element (an open tag) is found.
 void AbstractStandardMarkupAttoHandler.handleOpenElementEnd(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleOpenElementEnd(char[] buffer, int offset, int len, int line, int col)
           
 void IDetailedElementHandling.handleOpenElementName(char[] buffer, int offset, int len, int line, int col)
           Called when the name of an open element (an open tag) is found.
 void AbstractStandardMarkupAttoHandler.handleOpenElementName(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleOpenElementName(char[] buffer, int offset, int len, int line, int col)
           
 void IDetailedElementHandling.handleOpenElementStart(char[] buffer, int offset, int len, int line, int col)
           Called when the start of an open element (an open tag) is found.
 void AbstractStandardMarkupAttoHandler.handleOpenElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleOpenElementStart(char[] buffer, int offset, int len, 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(char[] buffer, int offset, int len, int line, int col)
           Called when the end of a standalone element (a minimized tag) is found.
 void AbstractStandardMarkupAttoHandler.handleStandaloneElementEnd(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleStandaloneElementEnd(char[] buffer, int offset, int len, int line, int col)
           
 void IDetailedElementHandling.handleStandaloneElementName(char[] buffer, int offset, int len, int line, int col)
           Called when the name of a standalone element (a minimized tag) is found.
 void AbstractStandardMarkupAttoHandler.handleStandaloneElementName(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleStandaloneElementName(char[] buffer, int offset, int len, int line, int col)
           
 void IDetailedElementHandling.handleStandaloneElementStart(char[] buffer, int offset, int len, int line, int col)
           Called when the start of a standalone element (a minimized tag) is found.
 void AbstractStandardMarkupAttoHandler.handleStandaloneElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractDetailedMarkupAttoHandler.handleStandaloneElementStart(char[] buffer, int offset, int len, int line, int col)
           
 void AbstractBasicMarkupAttoHandler.handleStructure(char[] buffer, int offset, int len, 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.dom
 

Methods in org.attoparser.markup.dom that throw AttoParseException
 void DOMMarkupAttoHandler.handleCDATASection(char[] buffer, int offset, int len, int line, int col)
           
 void DOMMarkupAttoHandler.handleCloseElement(String elementName, int line, int col)
           
 void DOMMarkupAttoHandler.handleComment(char[] buffer, int offset, int len, int line, int col)
           
 void DOMMarkupAttoHandler.handleDocType(String elementName, String publicId, String systemId, String internalSubset, int line, int col)
           
 void DOMMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, DocumentRestrictions documentRestrictions)
           
 void DOMMarkupAttoHandler.handleDocumentStart(long startTimeNanos, DocumentRestrictions documentRestrictions)
           
 void DOMMarkupAttoHandler.handleOpenElement(String elementName, Map<String,String> attributes, int line, int col)
           
 void DOMMarkupAttoHandler.handleProcessingInstruction(String target, String content, int line, int col)
           
 void DOMMarkupAttoHandler.handleStandaloneElement(String elementName, Map<String,String> attributes, int line, int col)
           
 void DOMMarkupAttoHandler.handleText(char[] buffer, int offset, int len, int line, int col)
           
 void DOMMarkupAttoHandler.handleXmlDeclaration(String version, String encoding, String standalone, int line, int col)
           
 

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.handleAttributeSeparator(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(char[] buffer, int offset, int len, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleCloseElementName(char[] buffer, int offset, int len, 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)
           
 void DuplicatingDetailedMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, DocumentRestrictions documentRestrictions)
           
 void DuplicatingBasicMarkupAttoHandler.handleDocumentStart(long startTimeNanos)
           
 void DuplicatingDetailedMarkupAttoHandler.handleDocumentStart(long startTimeNanos, DocumentRestrictions documentRestrictions)
           
 void DuplicatingBasicMarkupAttoHandler.handleOpenElement(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleOpenElementEnd(char[] buffer, int offset, int len, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleOpenElementName(char[] buffer, int offset, int len, 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(char[] buffer, int offset, int len, int line, int col)
           
 void DuplicatingDetailedMarkupAttoHandler.handleStandaloneElementName(char[] buffer, int offset, int len, 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 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.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 TracingDetailedMarkupAttoHandler.handleAttributeSeparator(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(char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleCloseElementName(char[] buffer, int offset, int len, 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)
           
 void TracingStandardMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, DocumentRestrictions documentRestrictions)
           
 void TracingDetailedMarkupAttoHandler.handleDocumentEnd(long endTimeNanos, long totalTimeNanos, DocumentRestrictions documentRestrictions)
           
 void TracingBasicMarkupAttoHandler.handleDocumentStart(long startTimeNanos)
           
 void TracingStandardMarkupAttoHandler.handleDocumentStart(long startTimeNanos, DocumentRestrictions documentRestrictions)
           
 void TracingDetailedMarkupAttoHandler.handleDocumentStart(long startTimeNanos, DocumentRestrictions documentRestrictions)
           
 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(char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleOpenElementName(char[] buffer, int offset, int len, 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(char[] buffer, int offset, int len, int line, int col)
           
 void TracingDetailedMarkupAttoHandler.handleStandaloneElementName(char[] buffer, int offset, int len, 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 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)
           
 



Copyright © 2012 The ATTOPARSER team. All Rights Reserved.