All Packages Class Hierarchy This Package Previous Next Index
Class jp.kyasu.awt.event.ListActionEvent
java.lang.Object
|
+----java.util.EventObject
|
+----java.awt.AWTEvent
|
+----java.awt.event.ActionEvent
|
+----jp.kyasu.awt.event.ListActionEvent
- public class ListActionEvent
- extends ActionEvent
The List actin event that is originated from a List
.
- Version:
- 23 Dec 1997
- Author:
- Kazuki YASUMATSU
- See Also:
- List, TableList
-
ListActionEvent(Object, int, String, Object, int, int, boolean)
- Constructs a ListActionEvent object with the specified source, id,
command string, item, row index, column index, and the boolean that
indicates the column button is pressed.
-
ListActionEvent(Object, String, Object, int, int)
- Constructs a ListActionEvent object with the specified source,
command string, item, row index, and column index.
-
ListActionEvent(Object, String, Object, int, int, boolean)
- Constructs a ListActionEvent object with the specified source,
command string, item, row index, column index, and the boolean that
indicates the column button is pressed.
-
getColumn()
- Returns the column index of this event.
-
getItem()
- Returns the item of this event.
-
getRow()
- Returns the row index of this event.
-
isButtonPressed()
- Returns true if the column button is pressed.
-
paramString()
-
ListActionEvent
public ListActionEvent(Object source,
String command,
Object item,
int row,
int column)
- Constructs a ListActionEvent object with the specified source,
command string, item, row index, and column index.
- Parameters:
- source - the object where the event originated.
- command - the command string.
- item - the item.
- row - the row index.
- column - the column index.
ListActionEvent
public ListActionEvent(Object source,
String command,
Object item,
int row,
int column,
boolean buttonPressed)
- Constructs a ListActionEvent object with the specified source,
command string, item, row index, column index, and the boolean that
indicates the column button is pressed.
- Parameters:
- source - the object where the event originated.
- command - the command string.
- item - the item.
- row - the row index.
- column - the column index.
- buttonPressed - the column button is pressed.
ListActionEvent
public ListActionEvent(Object source,
int id,
String command,
Object item,
int row,
int column,
boolean buttonPressed)
- Constructs a ListActionEvent object with the specified source, id,
command string, item, row index, column index, and the boolean that
indicates the column button is pressed.
- Parameters:
- source - the object where the event originated.
- id - the event type.
- command - the command string.
- item - the item.
- row - the row index.
- column - the column index.
- buttonPressed - the column button is pressed.
getItem
public Object getItem()
- Returns the item of this event.
getRow
public int getRow()
- Returns the row index of this event.
getColumn
public int getColumn()
- Returns the column index of this event.
isButtonPressed
public boolean isButtonPressed()
- Returns true if the column button is pressed.
paramString
public String paramString()
- Overrides:
- paramString in class ActionEvent
All Packages Class Hierarchy This Package Previous Next Index