Package org.xwiki.rendering.wikimodel
Interface IWemListenerFigure
-
- All Known Subinterfaces:
IWemListener
- All Known Implementing Classes:
AgregatingWemListener
,CompositeListener
,EmptyWemListener
,EventDumpListener
,JspWikiSerializer
,PrintInlineListener
,PrintListener
,PrintTextListener
,XWikiSerializer
,XWikiSerializer2
@Unstable public interface IWemListenerFigure
This listener is used to notify about figures and their captions.- Since:
- 14.1RC1
- Version:
- $Id: 90808befc8d7b98904d84ad02ee4c672834484c7 $
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
beginFigure(WikiParameters params)
Denotes the beginning of a figure, a container for a table or an image that optionally has a caption.default void
beginFigureCaption(WikiParameters params)
Denotes the beginning of a figure caption.default void
endFigure(WikiParameters params)
Denotes the end of a figure, a container for a table or an image that optionally has a caption.default void
endFigureCaption(WikiParameters params)
Denotes the beginning of a figure caption.
-
-
-
Method Detail
-
beginFigure
default void beginFigure(WikiParameters params)
Denotes the beginning of a figure, a container for a table or an image that optionally has a caption.- Parameters:
params
- Parameters for the figure
-
endFigure
default void endFigure(WikiParameters params)
Denotes the end of a figure, a container for a table or an image that optionally has a caption.- Parameters:
params
- Parameters for the figure
-
beginFigureCaption
default void beginFigureCaption(WikiParameters params)
Denotes the beginning of a figure caption. Must be inside a figure.- Parameters:
params
- Parameters for the figure caption
-
endFigureCaption
default void endFigureCaption(WikiParameters params)
Denotes the beginning of a figure caption. Must be inside a figure.- Parameters:
params
- Parameters for the figure caption
-
-