Package org.xwiki.rendering.macro.html
Class HTMLMacroParameters
- java.lang.Object
-
- org.xwiki.rendering.macro.html.HTMLMacroParameters
-
public class HTMLMacroParameters extends Object
Parameters for theHTMLMacro
Macro.- Since:
- 1.6M1
- Version:
- $Id: 655355a4a5cc1adfdffca62bad21799a2573fe50 $
-
-
Constructor Summary
Constructors Constructor Description HTMLMacroParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getClean()
boolean
getWiki()
void
setClean(boolean clean)
void
setWiki(boolean wiki)
-
-
-
Method Detail
-
setWiki
public void setWiki(boolean wiki)
- Parameters:
wiki
- indicate if the user has asked to interpret wiki syntax or not
-
setClean
public void setClean(boolean clean)
- Parameters:
clean
- indicate if the HTML should be transformed into valid XHTML or not
-
getWiki
public boolean getWiki()
- Returns:
- if the user has asked to interpret wiki syntax or not
-
getClean
public boolean getClean()
- Returns:
- if the HTML should be transformed into valid XHTML or not
-
-