Interface HTMLEditorStyleExtensionPoint
- 
- All Known Implementing Classes:
 EmptyHTMLEditorStyleExtension,SkinHTMLEditorStyleExtension,StaticHTMLEditorStyleExtension
public interface HTMLEditorStyleExtensionPoint
This extension point allows to determine which styles does exist for html edition 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default List<ClientSideElement.ScriptFile>getBackOfficeCSSFiles(Map<String,Object> contextParameters)Get the aggregation of all backoffice css filesStyleCategorygetImage(Map<String,Object> contextualParameters)Get the list of styles for imagesdefault List<ClientSideElement.ScriptFile>getInlineEditorCSSFiles(Map<String,Object> contextParameters)Get the aggregation of all inline editor css filesStyleCategorygetLink(Map<String,Object> contextualParameters)Get the list of styles for linkStyleCategorygetOrderedList(Map<String,Object> contextualParameters)Get the list of styles for ordered listsStyleCategorygetPara(Map<String,Object> contextualParameters)Get the list of styles for paragraphsStyleCategorygetTable(Map<String,Object> contextualParameters)Get the list of styles for tablesStyleCategorygetUnorderedList(Map<String,Object> contextualParameters)Get the list of styles for unordered lists 
 - 
 
- 
- 
Method Detail
- 
getPara
StyleCategory getPara(Map<String,Object> contextualParameters)
Get the list of styles for paragraphs- Parameters:
 contextualParameters- Contextuals parameters transmitted by the environment.- Returns:
 - A category. Can be null.
 
 
- 
getTable
StyleCategory getTable(Map<String,Object> contextualParameters)
Get the list of styles for tables- Parameters:
 contextualParameters- Contextuals parameters transmitted by the environment.- Returns:
 - A category. Can be null.
 
 
- 
getLink
StyleCategory getLink(Map<String,Object> contextualParameters)
Get the list of styles for link- Parameters:
 contextualParameters- Contextuals parameters transmitted by the environment.- Returns:
 - A category. Can be null.
 
 
- 
getImage
StyleCategory getImage(Map<String,Object> contextualParameters)
Get the list of styles for images- Parameters:
 contextualParameters- Contextuals parameters transmitted by the environment.- Returns:
 - A category. Can be null.
 
 
- 
getUnorderedList
StyleCategory getUnorderedList(Map<String,Object> contextualParameters)
Get the list of styles for unordered lists- Parameters:
 contextualParameters- Contextuals parameters transmitted by the environment.- Returns:
 - A category. Can be null.
 
 
- 
getOrderedList
StyleCategory getOrderedList(Map<String,Object> contextualParameters)
Get the list of styles for ordered lists- Parameters:
 contextualParameters- Contextuals parameters transmitted by the environment.- Returns:
 - A category. Can be null.
 
 
- 
getBackOfficeCSSFiles
default List<ClientSideElement.ScriptFile> getBackOfficeCSSFiles(Map<String,Object> contextParameters)
Get the aggregation of all backoffice css files- Parameters:
 contextParameters- The contextual parameters- Returns:
 - A non null list of ScriptFile
 
 
- 
getInlineEditorCSSFiles
default List<ClientSideElement.ScriptFile> getInlineEditorCSSFiles(Map<String,Object> contextParameters)
Get the aggregation of all inline editor css files- Parameters:
 contextParameters- The contextual parameters- Returns:
 - A non null list of ScriptFile
 
 
 - 
 
 -