soapical.likeoldsax
Class SpecificContentHandler

java.lang.Object
  extended bysoapical.likeoldsax.SpecificXMLWriter
      extended bysoapical.likeoldsax.SpecificContentHandler
All Implemented Interfaces:
org.xml.sax.ContentHandler

Deprecated. use SpecificXMLWriter instead.

public class SpecificContentHandler
extends SpecificXMLWriter

A wrapper to make ContentHandler easier to work with when you already know most of the content will be in a specific namespace.

All events are passed to the wrapped ContentHandler

This class provides SAX1 style functions to use when you already know what namespace you want your XML to be in. It is most useful for when you are trying to create XML by using SAX in reverse, for example, by using Megginson's XMLWriter.

The best way to use this class is to extend it and create a simpler version of the constructor.

Version:
$Revision: 1.3 $
$Date: 2003/04/24 13:26:23 $
Author:
Eric Kow (kow at loria point fr)

Constructor Summary
SpecificContentHandler(org.xml.sax.ContentHandler handler, java.lang.String namespaceURI, java.lang.String prefix)
          Deprecated.  
 
Methods inherited from class soapical.likeoldsax.SpecificXMLWriter
addAttribute, characters, emptyElement, emptyElement, endDocument, endElement, endElement, endPrefixMapping, ignorableWhitespace, processingInstruction, setDocumentLocator, skippedEntity, startDocument, startElement, startElement, startElement, startPrefixMapping
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SpecificContentHandler

public SpecificContentHandler(org.xml.sax.ContentHandler handler,
                              java.lang.String namespaceURI,
                              java.lang.String prefix)
Deprecated.