borland Packages  Class Hierarchy  internetbeans Package 

IxImage class

java.lang.Object
   +----com.borland.internetbeans.IxComponent
           +----com.borland.internetbeans.AbstractIxDataWidget
                   +----com.borland.internetbeans.IxImage

About the IxImage class

Variables  Properties  Methods

Implements ColumnAware, DataSetAware, Renderable, Serializable, Cloneable

Note: This package is a feature of JBuilder Professional and Enterprise.

Represents an image that is simply displayed or used as a link. If you want to use an image to submit a form, use an IxImageButton.


IxImage variables

Variables implemented in com.borland.internetbeans.AbstractIxDataWidget

Variables implemented in com.borland.internetbeans.IxComponent

IxImage properties

*Read-only properties **Write-only properties

Properties implemented in this class

Properties implemented in com.borland.internetbeans.AbstractIxDataWidget

Properties implemented in com.borland.internetbeans.IxComponent

Properties implemented in java.lang.Object

IxImage methods

Methods implemented in this class

Methods implemented in com.borland.internetbeans.AbstractIxDataWidget

Methods implemented in com.borland.internetbeans.IxComponent

Methods implemented in java.lang.Object


IxImage properties

alt

 public String getAlt()
 public void setAlt(String newAlt)
A string to describe the image in case the browser does not support graphics or has graphics turned off.

IxImage methods

assembleElementBody(outWrap)

  protected void assembleElementBody(OutputWrapper outWrap)
Required to concrete IxComponent. Because IMG tags are empty, this does nothing.

Parameters:

outWrap
The stream-like output into which the content goes

Overrides: com.borland.internetbeans.IxComponent.assembleElementBody(outWrap)

assembleTagAttributes(outWrap)

  protected void assembleTagAttributes(OutputWrapper outWrap)
Generates the TYPE, NAME, and VALUE atributes via AbstractIxInput.assembleTagAttributes then the SRC and ALT attributes.

Parameters:

outWrap
The stream-like output into which the content goes

Overrides: com.borland.internetbeans.AbstractIxInput.assembleTagAttributes(outWrap)

mergeTag(java.lang.String, java.util.Map, boolean)

  public void mergeTag(String tagName, Map attributes, boolean empty)
Called by PageProducer; do not call directly. Reads and stores the value ALT attribute, discards SRC (which is always generated), then calls super.

Parameters:

tagName
Name of the matching tag, e.g. INPUT, SELECT
attributes
Map of attribute values
empty
Whether the source tag was empty

Overrides: com.borland.internetbeans.AbstractIxButton.mergeTag(java.lang.String, java.util.Map, boolean)