All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jp.kyasu.awt.event.ListItemEvent

java.lang.Object
   |
   +----java.util.EventObject
           |
           +----java.awt.AWTEvent
                   |
                   +----java.awt.event.ItemEvent
                           |
                           +----jp.kyasu.awt.event.ListItemEvent

public class ListItemEvent
extends ItemEvent
The List item event that is originated from a List.

Version:
27 Dec 1997
Author:
Kazuki YASUMATSU
See Also:
List, TableList

Constructor Index

 o ListItemEvent(ItemSelectable, int, int, int, int)
Constructs a ListItemEvent object with the specified ItemSelectable source, id, item select state, row index, and column index.
 o ListItemEvent(ItemSelectable, int, Object, int, int[], int)
Constructs a ListItemEvent object with the specified ItemSelectable source, id, item, item select state, indices of items, and column index.

Method Index

 o getColumn()
Returns the column index of this event.
 o getItems()
Returns the indices of items of this event.
 o getRow()
Returns the column index of this event.
 o paramString()

Constructors

 o ListItemEvent
 public ListItemEvent(ItemSelectable source,
                      int id,
                      int stateChange,
                      int row,
                      int column)
Constructs a ListItemEvent object with the specified ItemSelectable source, id, item select state, row index, and column index.

Parameters:
source - the ItemSelectable object where the event originated.
id - the event type.
stateChange - the state change type which caused the event.
row - the row index.
column - the column index.
 o ListItemEvent
 public ListItemEvent(ItemSelectable source,
                      int id,
                      Object item,
                      int stateChange,
                      int items[],
                      int column)
Constructs a ListItemEvent object with the specified ItemSelectable source, id, item, item select state, indices of items, and column index.

Parameters:
source - the ItemSelectable object where the event originated.
id - the event type.
item - the item where the event occurred.
stateChange - the state change type which caused the event.
items - the indices of items where the event occurred.
column - the column index.

Methods

 o getItems
 public int[] getItems()
Returns the indices of items of this event.

 o getRow
 public int getRow()
Returns the column index of this event.

 o getColumn
 public int getColumn()
Returns the column index of this event.

 o paramString
 public String paramString()
Overrides:
paramString in class ItemEvent

All Packages  Class Hierarchy  This Package  Previous  Next  Index