Save This Page
Home » iText-src-2.1.3 » com.lowagie » text » [javadoc | source]
com.lowagie.text
public interface: MarkupAttributes [javadoc | source]

All Implemented Interfaces:
    Element

Defines the interface for an Element with markup attributes-- that is, random String-to-String properties for representation in markup languages such as HTML and XML.
Method from com.lowagie.text.MarkupAttributes Summary:
getMarkupAttribute,   getMarkupAttributeNames,   getMarkupAttributes,   setMarkupAttribute,   setMarkupAttributes
Method from com.lowagie.text.MarkupAttributes Detail:
 public String getMarkupAttribute(String name)
    Returns the value of the specified attribute.
 public Set getMarkupAttributeNames()
    Returns a Set of String attribute names for the MarkupAttributes implementor.
 public Properties getMarkupAttributes()
    Return a Properties-object containing all the markupAttributes.
 public  void setMarkupAttribute(String name,
    String value)
    Sets the specified attribute.
 public  void setMarkupAttributes(Properties markupAttributes)
    Sets the markupAttributes.