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
-
ListItemEvent(ItemSelectable, int, int, int, int)
- Constructs a ListItemEvent object with the specified ItemSelectable
source, id, item select state, row index, and column index.
-
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.
-
getColumn()
- Returns the column index of this event.
-
getItems()
- Returns the indices of items of this event.
-
getRow()
- Returns the column index of this event.
-
paramString()
-
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.
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.
getItems
public int[] getItems()
- Returns the indices of items of this event.
getRow
public int getRow()
- Returns the column index of this event.
getColumn
public int getColumn()
- Returns the column index of this event.
paramString
public String paramString()
- Overrides:
- paramString in class ItemEvent
All Packages Class Hierarchy This Package Previous Next Index