Package org.ametys.cms.transformation
Class AbstractEnhancementHandler
java.lang.Object
org.apache.avalon.framework.logger.AbstractLogEnabled
org.ametys.cms.transformation.AbstractEnhancementHandler
- All Implemented Interfaces:
LogEnabled
,ContentHandler
,LexicalHandler
- Direct Known Subclasses:
DataInclusionEnhancementHandler
,DefinitionEnhancementHandler
public abstract class AbstractEnhancementHandler
extends AbstractLogEnabled
implements ContentHandler, LexicalHandler
This interface is for component that wants to be in the docbook pipeline.
As a pipeline you receive events (from the ContentHandler and LexicalHandler interfaces)
you may transform it and write it to the given contentHandler (setContentHandler) and
given lexicalHandler (setLexicalHandler)
-
Field Summary
Modifier and TypeFieldDescriptionprotected ContentHandler
The content handler where to writeprotected boolean
True if the current HTML should not be modified Use to prevent to apply transformation on sax events (eg: HTML expert)protected LexicalHandler
The lexical handler where to writestatic final String
Processing instruction for unmodifiable content -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
characters
(char[] ch, int start, int length) void
comment
(char[] ch, int start, int length) void
endCDATA()
void
void
endDTD()
void
endElement
(String uri, String localName, String qName) void
void
endPrefixMapping
(String prefix) void
ignorableWhitespace
(char[] ch, int start, int length) void
processingInstruction
(String target, String data) protected void
saxError
(I18nizableText title, I18nizableText message, String absoluteIconPath) SAX an error message in content.void
setContentHandler
(ContentHandler contentHandler) Set the target content handlervoid
setDocumentLocator
(Locator locator) void
setLexicalHandler
(LexicalHandler lexicalHandler) Set the target lexical handlervoid
skippedEntity
(String name) void
void
void
void
startElement
(String uri, String localName, String qName, Attributes atts) void
startEntity
(String name) void
startPrefixMapping
(String prefix, String uri) Methods inherited from class org.apache.avalon.framework.logger.AbstractLogEnabled
enableLogging, getLogger, setupLogger, setupLogger, setupLogger
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.xml.sax.ContentHandler
declaration
-
Field Details
-
PROCESSING_INSTRUCTION_UNMODIFIABLE
Processing instruction for unmodifiable content- See Also:
-
_contentHandler
The content handler where to write -
_lexicalHandler
The lexical handler where to write -
_inUnmodifiableContent
True if the current HTML should not be modified Use to prevent to apply transformation on sax events (eg: HTML expert)
-
-
Constructor Details
-
AbstractEnhancementHandler
public AbstractEnhancementHandler()
-
-
Method Details
-
setContentHandler
Set the target content handler- Parameters:
contentHandler
- the target content handler
-
setLexicalHandler
Set the target lexical handler- Parameters:
lexicalHandler
- the target lexical handler
-
saxError
protected void saxError(I18nizableText title, I18nizableText message, String absoluteIconPath) throws SAXException SAX an error message in content.- Parameters:
title
- the error title. Can be null.message
- the error message. Can be null.absoluteIconPath
- the absolute path of the icon. Can be null.- Throws:
SAXException
- if an error occurred while SAXing
-
startDocument
- Specified by:
startDocument
in interfaceContentHandler
- Throws:
SAXException
-
endDocument
- Specified by:
endDocument
in interfaceContentHandler
- Throws:
SAXException
-
startElement
public void startElement(String uri, String localName, String qName, Attributes atts) throws SAXException - Specified by:
startElement
in interfaceContentHandler
- Throws:
SAXException
-
endElement
- Specified by:
endElement
in interfaceContentHandler
- Throws:
SAXException
-
characters
- Specified by:
characters
in interfaceContentHandler
- Throws:
SAXException
-
ignorableWhitespace
- Specified by:
ignorableWhitespace
in interfaceContentHandler
- Throws:
SAXException
-
processingInstruction
- Specified by:
processingInstruction
in interfaceContentHandler
- Throws:
SAXException
-
setDocumentLocator
- Specified by:
setDocumentLocator
in interfaceContentHandler
-
skippedEntity
- Specified by:
skippedEntity
in interfaceContentHandler
- Throws:
SAXException
-
startPrefixMapping
- Specified by:
startPrefixMapping
in interfaceContentHandler
- Throws:
SAXException
-
endPrefixMapping
- Specified by:
endPrefixMapping
in interfaceContentHandler
- Throws:
SAXException
-
startEntity
- Specified by:
startEntity
in interfaceLexicalHandler
- Throws:
SAXException
-
endEntity
- Specified by:
endEntity
in interfaceLexicalHandler
- Throws:
SAXException
-
startCDATA
- Specified by:
startCDATA
in interfaceLexicalHandler
- Throws:
SAXException
-
endCDATA
- Specified by:
endCDATA
in interfaceLexicalHandler
- Throws:
SAXException
-
startDTD
- Specified by:
startDTD
in interfaceLexicalHandler
- Throws:
SAXException
-
endDTD
- Specified by:
endDTD
in interfaceLexicalHandler
- Throws:
SAXException
-
comment
- Specified by:
comment
in interfaceLexicalHandler
- Throws:
SAXException
-