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

Constructor Index

 o 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.
 o ListActionEvent(Object, String, Object, int, int)
Constructs a ListActionEvent object with the specified source, command string, item, row index, and column index.
 o 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.

Method Index

 o getColumn()
Returns the column index of this event.
 o getItem()
Returns the item of this event.
 o getRow()
Returns the row index of this event.
 o isButtonPressed()
Returns true if the column button is pressed.
 o paramString()

Constructors

 o 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.
 o 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.
 o 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.

Methods

 o getItem
 public Object getItem()
Returns the item of this event.

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

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

 o isButtonPressed
 public boolean isButtonPressed()
Returns true if the column button is pressed.

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

All Packages  Class Hierarchy  This Package  Previous  Next  Index