This project has retired. For details please refer to its
Attic page .
StripNameSpacesTransformer (Cocoon API 2.1.12-dev [March 20 2012])
org.apache.cocoon.transformation
Class StripNameSpacesTransformer
java.lang.Object
org.apache.avalon.framework.logger.AbstractLogEnabled
org.apache.cocoon.xml.AbstractXMLProducer
org.apache.cocoon.xml.AbstractXMLPipe
org.apache.cocoon.transformation.AbstractTransformer
org.apache.cocoon.transformation.StripNameSpacesTransformer
All Implemented Interfaces: Poolable , Recyclable , Component , LogEnabled , CacheableProcessingComponent , SitemapModelComponent , Transformer , XMLPipe , XMLProducer , XMLConsumer , ContentHandler , LexicalHandler
public class StripNameSpacesTransformer extends AbstractTransformer implements CacheableProcessingComponent
Version:
$Id: StripNameSpacesTransformer.html 1304258 2012-03-23 10:09:27Z ilgrosso $
Author:
ard schrijvers
Fields inherited from interface org.apache.cocoon.transformation.Transformer
ROLE
Method Summary
void
endElement (String uri,
String localName,
String qName)
Receive notification of the end of an element.
void
endPrefixMapping (String prefix)
End the scope of a prefix-URI mapping.
Serializable
getKey ()
Generate the unique key.
SourceValidity
getValidity ()
Generate the validity object.
void
setup (SourceResolver resolver,
Map objectModel,
String src,
Parameters params)
Set the SourceResolver
, objectModel Map
,
the source and sitemap Parameters
used to process the request.
void
startElement (String uri,
String localName,
String qName,
Attributes attr)
Receive notification of the beginning of an element.
void
startPrefixMapping (String prefix,
String uri)
Begin the scope of a prefix-URI Namespace mapping.
Methods inherited from class org.apache.cocoon.xml.AbstractXMLPipe
characters , comment , endCDATA , endDocument , endDTD , endEntity , ignorableWhitespace , processingInstruction , setDocumentLocator , skippedEntity , startCDATA , startDocument , startDTD , startEntity
Methods inherited from class java.lang.Object
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
StripNameSpacesTransformer
public StripNameSpacesTransformer ()
setup
public void setup (SourceResolver resolver,
Map objectModel,
String src,
Parameters params)
throws ProcessingException ,
SAXException ,
IOException
Description copied from interface: SitemapModelComponent
Set the SourceResolver
, objectModel Map
,
the source and sitemap Parameters
used to process the request.
Specified by: setup
in interface SitemapModelComponent
Throws:
ProcessingException
SAXException
IOException
startPrefixMapping
public void startPrefixMapping (String prefix,
String uri)
throws SAXException
Description copied from class: AbstractXMLPipe
Begin the scope of a prefix-URI Namespace mapping.
Specified by: startPrefixMapping
in interface ContentHandler
Overrides: startPrefixMapping
in class AbstractXMLPipe
Parameters: prefix
- The Namespace prefix being declared.uri
- The Namespace URI the prefix is mapped to.
Throws:
SAXException
endPrefixMapping
public void endPrefixMapping (String prefix)
throws SAXException
Description copied from class: AbstractXMLPipe
End the scope of a prefix-URI mapping.
Specified by: endPrefixMapping
in interface ContentHandler
Overrides: endPrefixMapping
in class AbstractXMLPipe
Parameters: prefix
- The prefix that was being mapping.
Throws:
SAXException
startElement
public void startElement (String uri,
String localName,
String qName,
Attributes attr)
throws SAXException
Description copied from class: AbstractXMLPipe
Receive notification of the beginning of an element.
Specified by: startElement
in interface ContentHandler
Overrides: startElement
in class AbstractXMLPipe
Parameters: uri
- The Namespace URI, or the empty string if the element has no
Namespace URI or if Namespace
processing is not being performed.localName
- The local name (without prefix), or the empty string if
Namespace processing is not being performed.qName
- The raw XML 1.0 name (with prefix), or the empty string if
raw names are not available.attr
- The attributes attached to the element. If there are no
attributes, it shall be an empty Attributes object.
Throws:
SAXException
endElement
public void endElement (String uri,
String localName,
String qName)
throws SAXException
Description copied from class: AbstractXMLPipe
Receive notification of the end of an element.
Specified by: endElement
in interface ContentHandler
Overrides: endElement
in class AbstractXMLPipe
Parameters: uri
- The Namespace URI, or the empty string if the element has no
Namespace URI or if Namespace
processing is not being performed.localName
- The local name (without prefix), or the empty string if
Namespace processing is not being performed.qName
- The raw XML 1.0 name (with prefix), or the empty string if
raw names are not available.
Throws:
SAXException
getKey
public Serializable getKey ()
Description copied from interface: CacheableProcessingComponent
Generate the unique key.
This key must be unique inside the space of this component.
This method must be invoked before the getValidity() method.
Specified by: getKey
in interface CacheableProcessingComponent
Returns: The generated key or null
if the component
is currently not cacheable.
getValidity
public SourceValidity getValidity ()
Description copied from interface: CacheableProcessingComponent
Generate the validity object.
Before this method can be invoked the getKey() method
must be invoked.
Specified by: getValidity
in interface CacheableProcessingComponent
Returns: The generated validity object or null
if the
component is currently not cacheable.
Copyright © 1999-2010 The Apache Software Foundation. All Rights Reserved.