|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.EventObject
org.snmp4j.agent.mo.MOTableModelEvent
public class MOTableModelEvent
The MOTableModelEvent event object describes events that change
a table model. Such events include adding, removing, and changing of rows
as well as clearing a whole model.
| Field Summary | |
|---|---|
static int |
ROW_ADDED
|
static int |
ROW_CHANGED
|
static int |
ROW_REMOVED
|
static int |
TABLE_CLEAR
|
| Fields inherited from class java.util.EventObject |
|---|
source |
| Constructor Summary | |
|---|---|
MOTableModelEvent(java.lang.Object source,
int type)
Creates the model wide event. |
|
MOTableModelEvent(java.lang.Object source,
int type,
MOTableRow affectedRow)
Creates a model event associated with a single row. |
|
MOTableModelEvent(java.lang.Object source,
int type,
MOTableRow affectedRow,
int columnIndex)
Creates a model event associated with a single row and column. |
|
| Method Summary | |
|---|---|
MOTableRow |
getAffectedRow()
Gets the affected row (if a single row is affected by the event). |
int |
getColumnIndex()
Returns the column index associated with this event. |
int |
getType()
Returns the type of event. |
java.lang.String |
toString()
|
| Methods inherited from class java.util.EventObject |
|---|
getSource |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final int ROW_CHANGED
public static final int ROW_ADDED
public static final int ROW_REMOVED
public static final int TABLE_CLEAR
| Constructor Detail |
|---|
public MOTableModelEvent(java.lang.Object source,
int type,
MOTableRow affectedRow,
int columnIndex)
source - the event source.type - the event type as defined by the ROW_* constants of this object.affectedRow - the row that is associated with this event.columnIndex - the column index associated with this event.
public MOTableModelEvent(java.lang.Object source,
int type,
MOTableRow affectedRow)
source - the event source.type - the event type as defined by the ROW_* constants of this object.affectedRow - the row that is associated with this event.
public MOTableModelEvent(java.lang.Object source,
int type)
source - the event source.type - the event type as defined by the constants of this object.| Method Detail |
|---|
public int getType()
public MOTableRow getAffectedRow()
MOTableRow instance associated with this event, or
null if the whole model is affected.public int getColumnIndex()
public java.lang.String toString()
toString in class java.util.EventObject
|
Copyright 2005-2010 Frank Fock (SNMP4J.org) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||