Package org.xwiki.filter.xml
Class XMLConfiguration
- java.lang.Object
-
- org.xwiki.filter.xml.XMLConfiguration
-
public class XMLConfiguration extends Object
Allow to customize the syntax.- Since:
- 5.2M1
- Version:
- $Id: e1c44412103ad1f640b5c08bab2700a48ecdfbaf $
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ATT_BLOCK_NAMEThe default name of the attribute containing the name of the block.static StringDEFAULT_ATT_PARAMETER_NAMEThe default name of the attribute containing the name of the parameter.static StringDEFAULT_ATT_PARAMETER_TYPEThe default name of the attribute containing the type of the parameter.static StringDEFAULT_ELEM_BLOCKThe default name of block element.static StringDEFAULT_ELEM_PARAMETERThe default name of the parameter element.static StringDEFAULT_ELEM_PARAMETERSThe default name of the parameter element.
-
Constructor Summary
Constructors Constructor Description XMLConfiguration()Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAttributeBlockName()StringgetAttributeParameterName()StringgetAttributeParameterType()StringgetElementBlock()StringgetElementParameters()voidsetAttributeBlockName(String attributeBlockName)voidsetAttributeParameterName(String attributeParameterName)voidsetAttributeParameterType(String attributeParameterType)voidsetElementBlock(String elementBlock)voidsetElementParameters(String elementParameters)
-
-
-
Field Detail
-
DEFAULT_ELEM_BLOCK
public static final String DEFAULT_ELEM_BLOCK
The default name of block element.- See Also:
- Constant Field Values
-
DEFAULT_ATT_BLOCK_NAME
public static final String DEFAULT_ATT_BLOCK_NAME
The default name of the attribute containing the name of the block.- See Also:
- Constant Field Values
-
DEFAULT_ATT_PARAMETER_NAME
public static final String DEFAULT_ATT_PARAMETER_NAME
The default name of the attribute containing the name of the parameter.- See Also:
- Constant Field Values
-
DEFAULT_ATT_PARAMETER_TYPE
public static final String DEFAULT_ATT_PARAMETER_TYPE
The default name of the attribute containing the type of the parameter.- See Also:
- Constant Field Values
-
DEFAULT_ELEM_PARAMETER
public static final String DEFAULT_ELEM_PARAMETER
The default name of the parameter element.- See Also:
- Constant Field Values
-
DEFAULT_ELEM_PARAMETERS
public static final String DEFAULT_ELEM_PARAMETERS
The default name of the parameter element.- See Also:
- Constant Field Values
-
-
Method Detail
-
getElementBlock
public String getElementBlock()
- Returns:
- the name of the block element
-
setElementBlock
public void setElementBlock(String elementBlock)
- Parameters:
elementBlock- the name of the block element
-
getElementParameters
public String getElementParameters()
- Returns:
- the name of the parameters element
-
setElementParameters
public void setElementParameters(String elementParameters)
- Parameters:
elementParameters- the name of the parameters element
-
getAttributeBlockName
public String getAttributeBlockName()
- Returns:
- the name of the attribute containing the name of the block
-
setAttributeBlockName
public void setAttributeBlockName(String attributeBlockName)
- Parameters:
attributeBlockName- the name of the attribute containing the name of the block
-
getAttributeParameterName
public String getAttributeParameterName()
- Returns:
- the name of the attribute containing the name of the parameter
-
setAttributeParameterName
public void setAttributeParameterName(String attributeParameterName)
- Parameters:
attributeParameterName- the name of the attribute containing the name of the parameter
-
getAttributeParameterType
public String getAttributeParameterType()
- Returns:
- the name of the attribute containing the type of the parameter
-
setAttributeParameterType
public void setAttributeParameterType(String attributeParameterType)
- Parameters:
attributeParameterType- the name of the attribute containing the type of the parameter
-
-