Package com.lowagie.text.xml
Class XmlPeer
- java.lang.Object
-
- com.lowagie.text.xml.XmlPeer
-
-
Field Summary
Fields Modifier and Type Field Description protected PropertiesattributeAliasesThis is the Map that contains the aliases of the attributes.protected PropertiesattributeValuesThis is the Map that contains the default values of the attributes.protected StringcustomTagnameThis is the name of the alias.protected StringdefaultContentThis is String that contains the default content of the attributes.protected StringtagnameThis is the name of the alias.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAlias(String name, String alias)Sets an alias for an attribute.voidaddValue(String name, String value)Sets a value for an attribute.StringgetAlias()Gets the tagname of the peer.PropertiesgetAttributes(Attributes attrs)Gets the list of attributes of the peer.PropertiesgetDefaultValues()Returns the default values.StringgetName(String name)Returns the iText attribute name.StringgetTag()Gets the tagname of the peer.voidsetContent(String content)Sets the default content.
-
-
-
Field Detail
-
tagname
protected String tagname
This is the name of the alias.
-
customTagname
protected String customTagname
This is the name of the alias.
-
attributeAliases
protected Properties attributeAliases
This is the Map that contains the aliases of the attributes.
-
attributeValues
protected Properties attributeValues
This is the Map that contains the default values of the attributes.
-
defaultContent
protected String defaultContent
This is String that contains the default content of the attributes.
-
-
Method Detail
-
getTag
public String getTag()
Gets the tagname of the peer.- Returns:
- the iText name of a tag
-
getAlias
public String getAlias()
Gets the tagname of the peer.- Returns:
- the user defined tagname
-
getAttributes
public Properties getAttributes(Attributes attrs)
Gets the list of attributes of the peer.- Parameters:
attrs- the user defined set of attributes- Returns:
- the set of attributes translated to iText attributes
-
addAlias
public void addAlias(String name, String alias)
Sets an alias for an attribute.- Parameters:
name- the iText tagnamealias- the custom tagname
-
addValue
public void addValue(String name, String value)
Sets a value for an attribute.- Parameters:
name- the iText tagnamevalue- the default value for this tag
-
setContent
public void setContent(String content)
Sets the default content.- Parameters:
content- the default content
-
getName
public String getName(String name)
Returns the iText attribute name.- Parameters:
name- the custom attribute name- Returns:
- iText translated attribute name
-
getDefaultValues
public Properties getDefaultValues()
Returns the default values.- Returns:
- A set of default (user defined) values
-
-