| java.lang.Object net.mygwt.ui.client.data.ChangeEvent
ChangeEvent | public class ChangeEvent (Code) | | Instances of this class are sent as a result of model changes.
See Also: Model |
Field Summary | |
public int | index The location for inserts. | public Model | item The item being added or removed. | public Model | source The model that fired the event. | public int | type The change type. |
index | public int index(Code) | | The location for inserts.
|
item | public Model item(Code) | | The item being added or removed.
|
source | public Model source(Code) | | The model that fired the event.
|
ChangeEvent | public ChangeEvent(int type, Model source)(Code) | | Creates a new instance.
Parameters: type - the change type Parameters: source - the object that was changed |
ChangeEvent | public ChangeEvent(int type, Model source, Model item)(Code) | | Creates a new instance.
Parameters: type - the change type Parameters: source - the object that has changed Parameters: item - the item that was added or removed |
|
|