com.businessobjects.jsf.sdk.event
Class ItemEventArgs

java.lang.Object
  |
  +--com.businessobjects.jsf.sdk.event.ItemEventArgs

public class ItemEventArgs
extends java.lang.Object

Provides data for the AlertClickedEvent, ItemClickedEvent, and DrillUpClickedEvent events.


Constructor Summary
ItemEventArgs(java.lang.String id, java.lang.String type)
           
ItemEventArgs(java.lang.String id, java.lang.String type, int index)
           
 
Method Summary
 int getColumnIndex()
           Gets the column index.
 java.lang.String getItemID()
           Gets the unique identifier of the item represented in the component.
 java.lang.String getItemType()
           Gets the type of the current item.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ItemEventArgs

public ItemEventArgs(java.lang.String id,
                     java.lang.String type)

ItemEventArgs

public ItemEventArgs(java.lang.String id,
                     java.lang.String type,
                     int index)
Method Detail

getItemID

public java.lang.String getItemID()

Gets the unique identifier of the item represented in the component. Cannot be null or empty.

Returns:
A String that specifies the ID of the item in the component.

getItemType

public java.lang.String getItemType()

Gets the type of the current item. Cannot be null or empty.

Returns:
A String that specifies the type of the current item.

getColumnIndex

public int getColumnIndex()

Gets the column index.

Returns:
An int that specifies the column index.