org.attoparser.markup.trace
Class TracingDetailedMarkupAttoHandler

Object
  extended by org.attoparser.AbstractAttoHandler
      extended by org.attoparser.markup.AbstractBasicMarkupAttoHandler
          extended by org.attoparser.markup.AbstractDetailedMarkupAttoHandler
              extended by org.attoparser.markup.trace.TracingDetailedMarkupAttoHandler
All Implemented Interfaces:
IAttoHandler, ITimedDocumentHandling, IAttributeSequenceHandling, IBasicDocTypeHandling, IBasicElementHandling, ICDATASectionHandling, ICommentHandling, IDetailedDocTypeHandling, IDetailedElementHandling, IProcessingInstructionHandling, IXmlDeclarationHandling

public final class TracingDetailedMarkupAttoHandler
extends AbstractDetailedMarkupAttoHandler

Since:
1.0
Author:
Daniel Fernández

Constructor Summary
TracingDetailedMarkupAttoHandler(Writer writer)
           
TracingDetailedMarkupAttoHandler(Writer writer, DocumentRestrictions documentRestrictions)
           
 
Method Summary
 void 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 handleAttributeSeparator(char[] buffer, int offset, int len, int line, int col)
           Called when a separation between attributes is found.
 void handleCDATASection(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           Called when a CDATA section is found.
 void 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 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 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 handleComment(char[] buffer, int contentOffset, int contentLen, int outerOffset, int outerLen, int line, int col)
           Called when a comment is found.
 void 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 handleDocumentEnd(long endTimeNanos, long totalTimeNanos, DocumentRestrictions documentRestrictions)
           Called when document parsing ends.
 void handleDocumentStart(long startTimeNanos, DocumentRestrictions documentRestrictions)
           Called when document parsing starts.
 void 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 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 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 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 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 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 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 handleText(char[] buffer, int offset, int len, int line, int col)
           Called when a text artifact is found.
 void 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.
 
Methods inherited from class org.attoparser.markup.AbstractDetailedMarkupAttoHandler
handleCloseElement, handleDocType, handleDocumentEnd, handleDocumentStart, handleOpenElement, handleStandaloneElement, handleXmlDeclaration
 
Methods inherited from class org.attoparser.markup.AbstractBasicMarkupAttoHandler
handleStructure
 
Methods inherited from class org.attoparser.AbstractAttoHandler
getEndTimeNanos, getStartTimeNanos, getTotalTimeNanos, handleDocumentEnd, handleDocumentStart
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TracingDetailedMarkupAttoHandler

public TracingDetailedMarkupAttoHandler(Writer writer)

TracingDetailedMarkupAttoHandler

public TracingDetailedMarkupAttoHandler(Writer writer,
                                        DocumentRestrictions documentRestrictions)
Method Detail

handleDocumentStart

public void handleDocumentStart(long startTimeNanos,
                                DocumentRestrictions documentRestrictions)
                         throws AttoParseException
Description copied from class: AbstractDetailedMarkupAttoHandler

Called when document parsing starts.

Overrides:
handleDocumentStart in class AbstractDetailedMarkupAttoHandler
Parameters:
startTimeNanos - the starting time, in nanoseconds.
documentRestrictions - the document restrictions being applied.
Throws:
AttoParseException

handleDocumentEnd

public void handleDocumentEnd(long endTimeNanos,
                              long totalTimeNanos,
                              DocumentRestrictions documentRestrictions)
                       throws AttoParseException
Description copied from class: AbstractDetailedMarkupAttoHandler

Called when document parsing ends.

Overrides:
handleDocumentEnd in class AbstractDetailedMarkupAttoHandler
Parameters:
endTimeNanos - the parsing end time, in nanoseconds.
totalTimeNanos - the difference between parsing start and end times.
documentRestrictions - the document restrictions being applied.
Throws:
AttoParseException

handleStandaloneElementStart

public void handleStandaloneElementStart(char[] buffer,
                                         int offset,
                                         int len,
                                         int line,
                                         int col)
                                  throws AttoParseException
Description copied from interface: IDetailedElementHandling

Called when the start of a standalone element (a minimized tag) is found. This "start" is considered to be the "<" symbol the element starts with.

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleStandaloneElementStart in interface IDetailedElementHandling
Overrides:
handleStandaloneElementStart in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
offset - the offset (position in buffer) where the artifact starts.
len - the length (in chars) of the artifact, starting in offset.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleStandaloneElementName

public void handleStandaloneElementName(char[] buffer,
                                        int offset,
                                        int len,
                                        int line,
                                        int col)
                                 throws AttoParseException
Description copied from interface: IDetailedElementHandling

Called when the name of a standalone element (a minimized tag) is found. E.g., the "element name" of an element like <img src="images/logo.png" /> would be "img".

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleStandaloneElementName in interface IDetailedElementHandling
Overrides:
handleStandaloneElementName in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
offset - the offset (position in buffer) where the artifact starts.
len - the length (in chars) of the artifact, starting in offset.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleStandaloneElementEnd

public void handleStandaloneElementEnd(char[] buffer,
                                       int offset,
                                       int len,
                                       int line,
                                       int col)
                                throws AttoParseException
Description copied from interface: IDetailedElementHandling

Called when the end of a standalone element (a minimized tag) is found. This "end" is considered to be the ">" symbol the element ends with.

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleStandaloneElementEnd in interface IDetailedElementHandling
Overrides:
handleStandaloneElementEnd in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
offset - the offset (position in buffer) where the artifact starts.
len - the length (in chars) of the artifact, starting in offset.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleOpenElementStart

public void handleOpenElementStart(char[] buffer,
                                   int offset,
                                   int len,
                                   int line,
                                   int col)
                            throws AttoParseException
Description copied from interface: IDetailedElementHandling

Called when the start of an open element (an open tag) is found. This "start" is considered to be the "<" symbol the element starts with.

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleOpenElementStart in interface IDetailedElementHandling
Overrides:
handleOpenElementStart in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
offset - the offset (position in buffer) where the artifact starts.
len - the length (in chars) of the artifact, starting in offset.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleOpenElementName

public void handleOpenElementName(char[] buffer,
                                  int offset,
                                  int len,
                                  int line,
                                  int col)
                           throws AttoParseException
Description copied from interface: IDetailedElementHandling

Called when the name of an open element (an open tag) is found. E.g., the "element name" of an element like <div class="basic"> would be "div".

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleOpenElementName in interface IDetailedElementHandling
Overrides:
handleOpenElementName in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
offset - the offset (position in buffer) where the artifact starts.
len - the length (in chars) of the artifact, starting in offset.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleOpenElementEnd

public void handleOpenElementEnd(char[] buffer,
                                 int offset,
                                 int len,
                                 int line,
                                 int col)
                          throws AttoParseException
Description copied from interface: IDetailedElementHandling

Called when the end of an open element (an open tag) is found. This "end" is considered to be the ">" symbol the element ends with.

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleOpenElementEnd in interface IDetailedElementHandling
Overrides:
handleOpenElementEnd in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
offset - the offset (position in buffer) where the artifact starts.
len - the length (in chars) of the artifact, starting in offset.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleCloseElementStart

public void handleCloseElementStart(char[] buffer,
                                    int offset,
                                    int len,
                                    int line,
                                    int col)
                             throws AttoParseException
Description copied from interface: IDetailedElementHandling

Called when the start of a close element (a close tag) is found. This "start" is considered to be the "<" symbol the element starts with.

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleCloseElementStart in interface IDetailedElementHandling
Overrides:
handleCloseElementStart in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
offset - the offset (position in buffer) where the artifact starts.
len - the length (in chars) of the artifact, starting in offset.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleCloseElementName

public void handleCloseElementName(char[] buffer,
                                   int offset,
                                   int len,
                                   int line,
                                   int col)
                            throws AttoParseException
Description copied from interface: IDetailedElementHandling

Called when the name of a close element (a close tag) is found. E.g., the "element name" of an element like </div> would be "div".

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleCloseElementName in interface IDetailedElementHandling
Overrides:
handleCloseElementName in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
offset - the offset (position in buffer) where the artifact starts.
len - the length (in chars) of the artifact, starting in offset.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleCloseElementEnd

public void handleCloseElementEnd(char[] buffer,
                                  int offset,
                                  int len,
                                  int line,
                                  int col)
                           throws AttoParseException
Description copied from interface: IDetailedElementHandling

Called when the end of a close element (a close tag) is found. This "end" is considered to be the ">" symbol the element ends with.

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleCloseElementEnd in interface IDetailedElementHandling
Overrides:
handleCloseElementEnd in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
offset - the offset (position in buffer) where the artifact starts.
len - the length (in chars) of the artifact, starting in offset.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleAttribute

public void 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)
                     throws AttoParseException
Description copied from interface: IAttributeSequenceHandling

Called when an attribute is found.

Three [offset, len] pairs are provided for three partitions (name, operator, valueContent and valueOuter):

class="basic_column"
[NAM]* [VALUECONTE]| (*) = [OPERATOR]
|     [VALUEOUTER--]
[OUTER-------------]

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleAttribute in interface IAttributeSequenceHandling
Overrides:
handleAttribute in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
nameOffset - offset for the name partition.
nameLen - length of the name partition.
nameLine - the line in the original document where the name partition starts.
nameCol - the column in the original document where the name partition starts.
operatorOffset - offset for the operator partition.
operatorLen - length of the operator partition.
operatorLine - the line in the original document where the operator partition starts.
operatorCol - the column in the original document where the operator partition starts.
valueContentOffset - offset for the valueContent partition.
valueContentLen - length of the valueContent partition.
valueOuterOffset - offset for the valueOuter partition.
valueOuterLen - length of the valueOuter partition.
valueLine - the line in the original document where the value (outer) partition starts.
valueCol - the column in the original document where the value (outer) partition starts.
Throws:
AttoParseException

handleText

public void handleText(char[] buffer,
                       int offset,
                       int len,
                       int line,
                       int col)
                throws AttoParseException
Description copied from interface: IAttoHandler

Called when a text artifact is found.

A sequence of chars is considered to be text when no structures of any kind are contained inside it. In markup parsers, for example, this means no tags (a.k.a. elements), DOCTYPE's, processing instructions, etc. are contained in the sequence.

Text sequences might include any number of new line and/or control characters.

Text artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported texts should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleText in interface IAttoHandler
Overrides:
handleText in class AbstractAttoHandler
Parameters:
buffer - the document buffer (not copied)
offset - the offset (position in buffer) where the text artifact starts.
len - the length (in chars) of the text artifact, starting in offset.
line - the line in the original document where this text artifact starts.
col - the column in the original document where this text artifact starts.
Throws:
AttoParseException

handleComment

public void handleComment(char[] buffer,
                          int contentOffset,
                          int contentLen,
                          int outerOffset,
                          int outerLen,
                          int line,
                          int col)
                   throws AttoParseException
Description copied from interface: ICommentHandling

Called when a comment is found.

Two [offset, len] pairs are provided for two partitions (outer and content):

<!-- this is a comment -->
|   [CONTENT----------]  |
[OUTER-------------------]

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleComment in interface ICommentHandling
Overrides:
handleComment in class AbstractBasicMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
contentOffset - offset for the content partition.
contentLen - length of the content partition.
outerOffset - offset for the outer partition.
outerLen - length of the outer partition.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleCDATASection

public void handleCDATASection(char[] buffer,
                               int contentOffset,
                               int contentLen,
                               int outerOffset,
                               int outerLen,
                               int line,
                               int col)
                        throws AttoParseException
Description copied from interface: ICDATASectionHandling

Called when a CDATA section is found.

Two [offset, len] pairs are provided for two partitions (outer and content):

<![CDATA[ this is a CDATA section ]]>
|        [CONTENT----------------]  |
[OUTER------------------------------]

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleCDATASection in interface ICDATASectionHandling
Overrides:
handleCDATASection in class AbstractBasicMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
contentOffset - offset for the content partition.
contentLen - length of the content partition.
outerOffset - offset for the outer partition.
outerLen - length of the outer partition.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleXmlDeclarationDetail

public void 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)
                                throws AttoParseException
Description copied from class: AbstractDetailedMarkupAttoHandler

Called when a XML Declaration is found when using a handler extending from AbstractDetailedMarkupAttoHandler.

Five [offset, len] pairs are provided for five partitions (outer, keyword, version, encoding and standalone):

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
| [K]          [V]            [ENC]              [S]  |
[OUTER------------------------------------------------]

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Overrides:
handleXmlDeclarationDetail in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
keywordOffset - offset for the keyword partition.
keywordLen - length of the keyword partition.
keywordLine - the line in the original document where the keyword partition starts.
keywordCol - the column in the original document where the keyword partition starts.
versionOffset - offset for the version partition.
versionLen - length of the version partition.
versionLine - the line in the original document where the version partition starts.
versionCol - the column in the original document where the version partition starts.
encodingOffset - offset for the encoding partition.
encodingLen - length of the encoding partition.
encodingLine - the line in the original document where the encoding partition starts.
encodingCol - the column in the original document where the encoding partition starts.
standaloneOffset - offset for the standalone partition.
standaloneLen - length of the standalone partition.
standaloneLine - the line in the original document where the standalone partition starts.
standaloneCol - the column in the original document where the standalone partition starts.
outerOffset - offset for the outer partition.
outerLen - length of the outer partition.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleAttributeSeparator

public void handleAttributeSeparator(char[] buffer,
                                     int offset,
                                     int len,
                                     int line,
                                     int col)
                              throws AttoParseException
Description copied from interface: IAttributeSequenceHandling

Called when a separation between attributes is found.

This attribute separators can contain any amount of whitespace, including line feeds:

<div id="main"        class="basic_column">
              [ATTSEP]

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleAttributeSeparator in interface IAttributeSequenceHandling
Overrides:
handleAttributeSeparator in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
offset - offset for the artifact.
len - length of the artifact.
line - the line in the original document where the artifact starts.
col - the column in the original document where the artifact starts.
Throws:
AttoParseException

handleDocType

public void 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)
                   throws AttoParseException
Description copied from interface: IDetailedDocTypeHandling

Called when a DOCTYPE clause is found.

This method reports the DOCTYPE clause splitting it into its different parts.

Seven [offset, len] pairs are provided for seven partitions (outer, keyword, elementName, type, publicId, systemId and internalSubset) of the DOCTYPE clause:

<!DOCTYPE html PUBLIC ".........." ".........." [................]>
| [KEYWO] [EN] [TYPE]  [PUBLICID]   [SYSTEMID]   [INTERNALSUBSET] |
[OUTER------------------------------------------------------------]

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleDocType in interface IDetailedDocTypeHandling
Overrides:
handleDocType in class AbstractDetailedMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
keywordOffset - offset for the keyword partition.
keywordLen - length of the keyword partition.
keywordLine - the line in the original document where the keyword partition starts.
keywordCol - the column in the original document where the keyword partition starts.
elementNameOffset - offset for the elementName partition.
elementNameLen - length of the elementName partition.
elementNameLine - the line in the original document where the elementName partition starts.
elementNameCol - the column in the original document where the elementName partition starts.
typeOffset - offset for the type partition.
typeLen - length of the type partition.
typeLine - the line in the original document where the type partition starts.
typeCol - the column in the original document where the type partition starts.
publicIdOffset - offset for the publicId partition.
publicIdLen - length of the publicId partition.
publicIdLine - the line in the original document where the publicId partition starts.
publicIdCol - the column in the original document where the publicId partition starts.
systemIdOffset - offset for the systemId partition.
systemIdLen - length of the systemId partition.
systemIdLine - the line in the original document where the systemId partition starts.
systemIdCol - the column in the original document where the systemId partition starts.
internalSubsetOffset - offset for the internalSubsetId partition.
internalSubsetLen - length of the internalSubsetId partition.
internalSubsetLine - the line in the original document where the internalSubsetId partition starts.
internalSubsetCol - the column in the original document where the internalSubsetId partition starts.
outerOffset - offset for the outer partition.
outerLen - length of the outer partition.
outerLine - the line in the original document where this artifact starts.
outerCol - the column in the original document where this artifact starts.
Throws:
AttoParseException

handleProcessingInstruction

public void 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)
                                 throws AttoParseException
Description copied from interface: IProcessingInstructionHandling

Called when a Processing Instruction is found.

Three [offset, len] pairs are provided for three partitions (outer, target and content):

<?xls-stylesheet somePar1="a" somePar2="b"?>
| [TARGET------] [CONTENT----------------] |
[OUTER-------------------------------------]

Note that, although XML Declarations have the same format as processing instructions, they are not considered as such and therefore are handled by a different interface (IXmlDeclarationHandling).

Artifacts are reported using the document buffer directly, and this buffer should not be considered to be immutable, so reported structures should be copied if they need to be stored (either by copying len chars from the buffer char[] starting in offset or by creating a String from it using the same specification).

Implementations of this handler should never modify the document buffer.

Specified by:
handleProcessingInstruction in interface IProcessingInstructionHandling
Overrides:
handleProcessingInstruction in class AbstractBasicMarkupAttoHandler
Parameters:
buffer - the document buffer (not copied)
targetOffset - offset for the target partition.
targetLen - length of the target partition.
targetLine - the line in the original document where the target partition starts.
targetCol - the column in the original document where the target partition starts.
contentOffset - offset for the content partition.
contentLen - length of the content partition.
contentLine - the line in the original document where the content partition starts.
contentCol - the column in the original document where the content partition starts.
outerOffset - offset for the outer partition.
outerLen - length of the outer partition.
line - the line in the original document where this artifact starts.
col - the column in the original document where this artifact starts.
Throws:
AttoParseException


Copyright © 2012 The ATTOPARSER team. All Rights Reserved.