Class TitleComponentTagHandler
- java.lang.Object
-
- com.day.cq.wcm.designimporter.parser.taghandlers.AbstractTagHandler
-
- com.day.cq.wcm.designimporter.parser.taghandlers.TitleComponentTagHandler
-
- All Implemented Interfaces:
HTMLContentProvider,PageComponentProvider,TagHandler
public class TitleComponentTagHandler extends AbstractTagHandler
The title component tag handler is used to translate the title component div(or an equivalent markup) into a CQ title component.This tag handler is registered against the markup of type < div|h1-6 data-cq-component="title" > (Read as a div, h1, h2,.., h6 tag with the attribute data-cq-component equal to "title"). That implies this tag handler will come into action whenever the design importer framework encounters an HTML tag matching the rule this handler is defined against.
- See Also:
TitleComponentTagHandlerFactory
-
-
Field Summary
-
Fields inherited from class com.day.cq.wcm.designimporter.parser.taghandlers.AbstractTagHandler
NAME_HINT_PROPERTY_KEY
-
-
Constructor Summary
Constructors Constructor Description TitleComponentTagHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbeginHandling(String uri, String localName, String qName, Attributes atts)Callback to signal the start of handling giving the tag handler a chance for running intialization routines.voidcharacters(char[] ch, int start, int length)Callback to signal the encounter of character content within tags.voidendElement(String uri, String localName, String qName)Callback to signal the encounter of a tag end.voidendHandling(String uri, String localName, String qName)Callback to signal the end of handling giving the tag handler a chance for finalizing things.ObjectgetContent(HTMLContentType htmlContentType)Gets the content of the typeHTMLContentTypevoidsetResourceType(String resourceType)voidstartElement(String uri, String localName, String qName, Attributes atts)Callback to signal the encounter of a tag start.booleansupportsContent(HTMLContentType htmlContentType)Indicates whether the passedHTMLContentTypeis supported or not-
Methods inherited from class com.day.cq.wcm.designimporter.parser.taghandlers.AbstractTagHandler
getPageComponents, setDesignImporterContext, setPageBuilder, setTagHandlerProvider
-
-
-
-
Method Detail
-
beginHandling
public void beginHandling(String uri, String localName, String qName, Attributes atts) throws DesignImportException
Description copied from interface:TagHandlerCallback to signal the start of handling giving the tag handler a chance for running intialization routines.TagHandlers are registered against tag+attribute combination and are invoked by theHTMLContentHandleras and when it encounters a tag matching the tag attribute combination the tag handler is registered with.- Specified by:
beginHandlingin interfaceTagHandler- Overrides:
beginHandlingin classAbstractTagHandler- Throws:
DesignImportException
-
startElement
public void startElement(String uri, String localName, String qName, Attributes atts) throws DesignImportException
Description copied from interface:TagHandlerCallback to signal the encounter of a tag start.Once a tag handler begins handling, it receives the start tag events for all the nested tags within the purview of the tag this tag handler is registered against.
- Specified by:
startElementin interfaceTagHandler- Overrides:
startElementin classAbstractTagHandler- Throws:
DesignImportException
-
characters
public void characters(char[] ch, int start, int length) throws DesignImportExceptionDescription copied from interface:TagHandlerCallback to signal the encounter of character content within tags.- Specified by:
charactersin interfaceTagHandler- Overrides:
charactersin classAbstractTagHandler- Throws:
DesignImportException
-
endElement
public void endElement(String uri, String localName, String qName) throws DesignImportException
Description copied from interface:TagHandlerCallback to signal the encounter of a tag end.- Specified by:
endElementin interfaceTagHandler- Overrides:
endElementin classAbstractTagHandler- Throws:
DesignImportException
-
endHandling
public void endHandling(String uri, String localName, String qName) throws DesignImportException
Description copied from interface:TagHandlerCallback to signal the end of handling giving the tag handler a chance for finalizing things.This is arguably the last callback a tag handler receives. After this, the current tag handler is popped out from the chain and the subsequent Tika events are directed to preceding tag handlers.
- Specified by:
endHandlingin interfaceTagHandler- Overrides:
endHandlingin classAbstractTagHandler- Throws:
DesignImportException
-
supportsContent
public boolean supportsContent(HTMLContentType htmlContentType)
Description copied from interface:HTMLContentProviderIndicates whether the passedHTMLContentTypeis supported or not- Specified by:
supportsContentin interfaceHTMLContentProvider- Overrides:
supportsContentin classAbstractTagHandler- Returns:
-
getContent
public Object getContent(HTMLContentType htmlContentType)
Description copied from interface:HTMLContentProviderGets the content of the typeHTMLContentType- Specified by:
getContentin interfaceHTMLContentProvider- Overrides:
getContentin classAbstractTagHandler- Returns:
-
setResourceType
public void setResourceType(String resourceType)
-
-