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
Fields Modifier and Type Field Description protected ContentHandler_contentHandlerThe content handler where to writeprotected boolean_inUnmodifiableContentTrue if the current HTML should not be modified Use to prevent to apply transformation on sax events (eg: HTML expert)protected LexicalHandler_lexicalHandlerThe lexical handler where to writestatic StringPROCESSING_INSTRUCTION_UNMODIFIABLEProcessing instruction for unmodifiable content
-
Constructor Summary
Constructors Constructor Description AbstractEnhancementHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcharacters(char[] ch, int start, int length)voidcomment(char[] ch, int start, int length)voidendCDATA()voidendDocument()voidendDTD()voidendElement(String uri, String localName, String qName)voidendEntity(String name)voidendPrefixMapping(String prefix)voidignorableWhitespace(char[] ch, int start, int length)voidprocessingInstruction(String target, String data)protected voidsaxError(I18nizableText title, I18nizableText message, String absoluteIconPath)SAX an error message in content.voidsetContentHandler(ContentHandler contentHandler)Set the target content handlervoidsetDocumentLocator(Locator locator)voidsetLexicalHandler(LexicalHandler lexicalHandler)Set the target lexical handlervoidskippedEntity(String name)voidstartCDATA()voidstartDocument()voidstartDTD(String name, String publicId, String systemId)voidstartElement(String uri, String localName, String qName, Attributes atts)voidstartEntity(String name)voidstartPrefixMapping(String prefix, String uri)-
Methods inherited from class org.apache.avalon.framework.logger.AbstractLogEnabled
enableLogging, getLogger, setupLogger, setupLogger, setupLogger
-
-
-
-
Field Detail
-
PROCESSING_INSTRUCTION_UNMODIFIABLE
public static final String PROCESSING_INSTRUCTION_UNMODIFIABLE
Processing instruction for unmodifiable content- See Also:
- Constant Field Values
-
_contentHandler
protected ContentHandler _contentHandler
The content handler where to write
-
_lexicalHandler
protected LexicalHandler _lexicalHandler
The lexical handler where to write
-
_inUnmodifiableContent
protected boolean _inUnmodifiableContent
True if the current HTML should not be modified Use to prevent to apply transformation on sax events (eg: HTML expert)
-
-
Constructor Detail
-
AbstractEnhancementHandler
public AbstractEnhancementHandler()
-
-
Method Detail
-
setContentHandler
public void setContentHandler(ContentHandler contentHandler)
Set the target content handler- Parameters:
contentHandler- the target content handler
-
setLexicalHandler
public void setLexicalHandler(LexicalHandler lexicalHandler)
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
public void startDocument() throws SAXException
- Specified by:
startDocumentin interfaceContentHandler- Throws:
SAXException
-
endDocument
public void endDocument() throws SAXException
- Specified by:
endDocumentin interfaceContentHandler- Throws:
SAXException
-
startElement
public void startElement(String uri, String localName, String qName, Attributes atts) throws SAXException
- Specified by:
startElementin interfaceContentHandler- Throws:
SAXException
-
endElement
public void endElement(String uri, String localName, String qName) throws SAXException
- Specified by:
endElementin interfaceContentHandler- Throws:
SAXException
-
characters
public void characters(char[] ch, int start, int length) throws SAXException
- Specified by:
charactersin interfaceContentHandler- Throws:
SAXException
-
ignorableWhitespace
public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException
- Specified by:
ignorableWhitespacein interfaceContentHandler- Throws:
SAXException
-
processingInstruction
public void processingInstruction(String target, String data) throws SAXException
- Specified by:
processingInstructionin interfaceContentHandler- Throws:
SAXException
-
setDocumentLocator
public void setDocumentLocator(Locator locator)
- Specified by:
setDocumentLocatorin interfaceContentHandler
-
skippedEntity
public void skippedEntity(String name) throws SAXException
- Specified by:
skippedEntityin interfaceContentHandler- Throws:
SAXException
-
startPrefixMapping
public void startPrefixMapping(String prefix, String uri) throws SAXException
- Specified by:
startPrefixMappingin interfaceContentHandler- Throws:
SAXException
-
endPrefixMapping
public void endPrefixMapping(String prefix) throws SAXException
- Specified by:
endPrefixMappingin interfaceContentHandler- Throws:
SAXException
-
startEntity
public void startEntity(String name) throws SAXException
- Specified by:
startEntityin interfaceLexicalHandler- Throws:
SAXException
-
endEntity
public void endEntity(String name) throws SAXException
- Specified by:
endEntityin interfaceLexicalHandler- Throws:
SAXException
-
startCDATA
public void startCDATA() throws SAXException
- Specified by:
startCDATAin interfaceLexicalHandler- Throws:
SAXException
-
endCDATA
public void endCDATA() throws SAXException
- Specified by:
endCDATAin interfaceLexicalHandler- Throws:
SAXException
-
startDTD
public void startDTD(String name, String publicId, String systemId) throws SAXException
- Specified by:
startDTDin interfaceLexicalHandler- Throws:
SAXException
-
endDTD
public void endDTD() throws SAXException
- Specified by:
endDTDin interfaceLexicalHandler- Throws:
SAXException
-
comment
public void comment(char[] ch, int start, int length) throws SAXException
- Specified by:
commentin interfaceLexicalHandler- Throws:
SAXException
-
-