com.ibm.as400.util.html
Class HTMLTagAttributes

java.lang.Object
  extended bycom.ibm.as400.util.html.HTMLTagAttributes
All Implemented Interfaces:
HTMLTagElement, Serializable
Direct Known Subclasses:
BidiOrdering, FormInput, HTMLAlign, HTMLApplet, HTMLDocument, HTMLForm, HTMLHead, HTMLHeading, HTMLHyperlink, HTMLImage, HTMLList, HTMLListItem, HTMLMeta, HTMLParameter, HTMLServlet, HTMLTable, HTMLTableCaption, HTMLTableCell, HTMLTableRow, HTMLText, RadioFormInputGroup, SelectFormElement, SelectOption, TextAreaFormElement

public abstract class HTMLTagAttributes
extends Object
implements HTMLTagElement, Serializable

The HTMLTagAttributes class represents any additional HTML tag attributes not implemented in the HTML classes.

HTMLTagAttributes objects generate the following events:

See Also:
Serialized Form

Constructor Summary
HTMLTagAttributes()
          Constructs a default HTMLTagAttributes.
 
Method Summary
 void addPropertyChangeListener(PropertyChangeListener listener)
          Adds a PropertyChangeListener.
 Properties getAttributes()
          Returns the attribute properties object.
 String getAttributeString()
          Returns the attribute string.
 void removePropertyChangeListener(PropertyChangeListener listener)
          Removes the PropertyChangeListener from the internal list.
 void setAttributes(Properties attributes)
          Set the additional HTML tag attributes.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.ibm.as400.util.html.HTMLTagElement
getFOTag, getTag
 

Constructor Detail

HTMLTagAttributes

public HTMLTagAttributes()
Constructs a default HTMLTagAttributes.

Method Detail

addPropertyChangeListener

public void addPropertyChangeListener(PropertyChangeListener listener)
Adds a PropertyChangeListener. The specified PropertyChangeListener's propertyChange method will be called each time the value of any bound property is changed.

Parameters:
listener - The PropertyChangeListener.
See Also:
removePropertyChangeListener(java.beans.PropertyChangeListener)

getAttributes

public Properties getAttributes()
Returns the attribute properties object.

Returns:
The attributes.

getAttributeString

public String getAttributeString()
Returns the attribute string.

Returns:
The attributes.

removePropertyChangeListener

public void removePropertyChangeListener(PropertyChangeListener listener)
Removes the PropertyChangeListener from the internal list. If the PropertyChangeListener is not on the list, nothing is done.

Parameters:
listener - The PropertyChangeListener.
See Also:
addPropertyChangeListener(java.beans.PropertyChangeListener)

setAttributes

public void setAttributes(Properties attributes)
Set the additional HTML tag attributes.

Parameters:
attributes - The attributes.