com.softwareag.tamino.db.api.objectModel.stream
Class TStreamWritingLexicalHandler

java.lang.Object
  extended by com.softwareag.tamino.db.api.objectModel.stream.TStreamWritingLexicalHandler
All Implemented Interfaces:
org.xml.sax.ext.LexicalHandler

public class TStreamWritingLexicalHandler
extends java.lang.Object
implements org.xml.sax.ext.LexicalHandler

TSAXWritingLexicalHandler implements the LexicalHandler interface. An instance of this class is responsible to write lexical SAX events thrown by an associated parser to a given data sunk.

Version:
$Revision: 1.7 $
Author:
Marcus Schreyer

Field Summary
static java.lang.String PROPERTY_ID
          The property id according to which a concrete LexicalHandler instance is set on an XMLReader instance.
 
Constructor Summary
TStreamWritingLexicalHandler(java.io.Writer writer, TStreamWritingDeclHandler streamWritingDeclHandler)
          Initialzes the handler with the given character output stream..
 
Method Summary
 void comment(char[] ch, int start, int length)
          Report an XML comment anywhere in the document.
 void endCDATA()
          Report the end of a CDATA section.
 void endDTD()
          Report the end of DTD declarations.
 void endEntity(java.lang.String name)
          Report the end of an entity.
 void setDelegateHandler(org.xml.sax.ext.LexicalHandler lexicalHandlerDelegate)
          Sets a lexical handler to delegate the (currently only required!!) events (CDATA).
 void setWriter(TStreamWriterHelper writerHelper)
          Sets a new character output stream to which events can be written to.
 void setWriter(java.io.Writer writer)
          Sets a new character output stream to which events can be written to.
 void startCDATA()
          Report the start of a CDATA section.
 void startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
          Report the start of DTD declarations, if any.
 void startEntity(java.lang.String name)
          Report the beginning of an entity in content.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PROPERTY_ID

public static final java.lang.String PROPERTY_ID
The property id according to which a concrete LexicalHandler instance is set on an XMLReader instance. E.g.
 xmlReader.setProperty( TSAXWritingLexicalHandler.PROPERTY_ID , lexicalHandler ); 

See Also:
Constant Field Values
Constructor Detail

TStreamWritingLexicalHandler

public TStreamWritingLexicalHandler(java.io.Writer writer,
                                    TStreamWritingDeclHandler streamWritingDeclHandler)
Initialzes the handler with the given character output stream..

Method Detail

setWriter

public void setWriter(TStreamWriterHelper writerHelper)
Sets a new character output stream to which events can be written to.


setDelegateHandler

public void setDelegateHandler(org.xml.sax.ext.LexicalHandler lexicalHandlerDelegate)
Sets a lexical handler to delegate the (currently only required!!) events (CDATA).


setWriter

public void setWriter(java.io.Writer writer)
Sets a new character output stream to which events can be written to.


comment

public void comment(char[] ch,
                    int start,
                    int length)
             throws org.xml.sax.SAXException
Report an XML comment anywhere in the document.

Specified by:
comment in interface org.xml.sax.ext.LexicalHandler
Throws:
org.xml.sax.SAXException

startCDATA

public void startCDATA()
                throws org.xml.sax.SAXException
Report the start of a CDATA section.

Specified by:
startCDATA in interface org.xml.sax.ext.LexicalHandler
Throws:
org.xml.sax.SAXException

endCDATA

public void endCDATA()
              throws org.xml.sax.SAXException
Report the end of a CDATA section.

Specified by:
endCDATA in interface org.xml.sax.ext.LexicalHandler
Throws:
org.xml.sax.SAXException

startDTD

public void startDTD(java.lang.String name,
                     java.lang.String publicId,
                     java.lang.String systemId)
              throws org.xml.sax.SAXException
Report the start of DTD declarations, if any.

Specified by:
startDTD in interface org.xml.sax.ext.LexicalHandler
Throws:
org.xml.sax.SAXException

endDTD

public void endDTD()
            throws org.xml.sax.SAXException
Report the end of DTD declarations.

Specified by:
endDTD in interface org.xml.sax.ext.LexicalHandler
Throws:
org.xml.sax.SAXException

endEntity

public void endEntity(java.lang.String name)
               throws org.xml.sax.SAXException
Report the end of an entity.

Specified by:
endEntity in interface org.xml.sax.ext.LexicalHandler
Throws:
org.xml.sax.SAXException

startEntity

public void startEntity(java.lang.String name)
                 throws org.xml.sax.SAXException
Report the beginning of an entity in content.

Specified by:
startEntity in interface org.xml.sax.ext.LexicalHandler
Throws:
org.xml.sax.SAXException


Copyright (c) 2013 Software AG. All Rights Reserved.