org.geotools.xml.transform
Class TransformerBase.TranslatorSupport

Object
  extended by TransformerBase.TranslatorSupport
All Implemented Interfaces:
Translator
Direct Known Subclasses:
FeatureTransformer.FeatureTranslator, FeatureTypeTransformer.FeatureTypeTranslator, FilterTransformer.FilterTranslator, GeometryTransformer.GeometryTranslator
Enclosing class:
TransformerBase

protected abstract static class TransformerBase.TranslatorSupport
extends Object
implements Translator

Support for writing Translators.


Field Summary
protected  ContentHandler contentHandler
           
protected  NamespaceSupport nsSupport
           
protected  Attributes NULL_ATTS
           
protected  boolean running
          Subclasses should check this flag in case an abort message was sent and stop any internal iteration if false.
protected  TransformerBase.SchemaLocationSupport schemaLocation
           
 
Constructor Summary
TransformerBase.TranslatorSupport(ContentHandler contentHandler, String prefix, String nsURI)
           
TransformerBase.TranslatorSupport(ContentHandler contentHandler, String prefix, String nsURI, TransformerBase.SchemaLocationSupport schemaLocation)
           
 
Method Summary
 void abort()
          Abort any translating activity.
protected  void addNamespaceDeclarations(TransformerBase.TranslatorSupport trans)
          Utility method to copy namespace declarations from "sub" translators into this ns support...
protected  void cdata(String cdata)
           
protected  void chars(String text)
           
protected  AttributesImpl createAttributes(String[] nameValuePairs)
          Utility method for creating attributes from an array of name value pairs.
protected  void element(String element, String content)
           
protected  void element(String element, String content, Attributes atts)
           
protected  void elementSafe(String element, String content)
          Will only issue the provided element if content is non empty
protected  void end(String element)
           
 String getDefaultNamespace()
          Get the default URI used by this Translator for encoding.
 String getDefaultPrefix()
          Get the default prefix used by this Translator for encoding.
 NamespaceSupport getNamespaceSupport()
          Obtain the namespace prefixes and URIs to be included in the output document.
 TransformerBase.SchemaLocationSupport getSchemaLocationSupport()
          Gets the location of the schemas used in this translator.
protected  void start(String element)
           
protected  void start(String element, Attributes atts)
           
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface Translator
encode
 

Field Detail

contentHandler

protected final ContentHandler contentHandler

NULL_ATTS

protected final Attributes NULL_ATTS

nsSupport

protected NamespaceSupport nsSupport

schemaLocation

protected TransformerBase.SchemaLocationSupport schemaLocation

running

protected volatile boolean running
Subclasses should check this flag in case an abort message was sent and stop any internal iteration if false.

Constructor Detail

TransformerBase.TranslatorSupport

public TransformerBase.TranslatorSupport(ContentHandler contentHandler,
                                         String prefix,
                                         String nsURI)

TransformerBase.TranslatorSupport

public TransformerBase.TranslatorSupport(ContentHandler contentHandler,
                                         String prefix,
                                         String nsURI,
                                         TransformerBase.SchemaLocationSupport schemaLocation)
Method Detail

abort

public void abort()
Description copied from interface: Translator
Abort any translating activity. This is needed as some translators iterate internally on a data structure. The abort method should silently fail or succeed based upon the state of a translation.

Specified by:
abort in interface Translator

addNamespaceDeclarations

protected void addNamespaceDeclarations(TransformerBase.TranslatorSupport trans)
Utility method to copy namespace declarations from "sub" translators into this ns support...


createAttributes

protected AttributesImpl createAttributes(String[] nameValuePairs)
Utility method for creating attributes from an array of name value pairs.

The nameValuePairs array should be of the form:

{name1,value1,name2,value2,...,nameN,valueN}

Parameters:
nameValuePairs - The attribute names/values.

element

protected void element(String element,
                       String content)

elementSafe

protected void elementSafe(String element,
                           String content)
Will only issue the provided element if content is non empty

Parameters:
element -
content -

element

protected void element(String element,
                       String content,
                       Attributes atts)

start

protected void start(String element)

start

protected void start(String element,
                     Attributes atts)

chars

protected void chars(String text)

end

protected void end(String element)

cdata

protected void cdata(String cdata)

getDefaultNamespace

public String getDefaultNamespace()
Description copied from interface: Translator
Get the default URI used by this Translator for encoding. Optional.

Specified by:
getDefaultNamespace in interface Translator

getDefaultPrefix

public String getDefaultPrefix()
Description copied from interface: Translator
Get the default prefix used by this Translator for encoding. Optional.

Specified by:
getDefaultPrefix in interface Translator

getNamespaceSupport

public NamespaceSupport getNamespaceSupport()
Description copied from interface: Translator
Obtain the namespace prefixes and URIs to be included in the output document.

Specified by:
getNamespaceSupport in interface Translator
Returns:
An instance of NamespaceSupport.

getSchemaLocationSupport

public TransformerBase.SchemaLocationSupport getSchemaLocationSupport()
Description copied from interface: Translator
Gets the location of the schemas used in this translator. Optional.

Specified by:
getSchemaLocationSupport in interface Translator


Copyright © 1996-2010 Geotools. All Rights Reserved.