| java.lang.Object net.refractions.udig.project.UDIGEvent net.refractions.udig.project.EditManagerEvent
EditManagerEvent | public class EditManagerEvent extends UDIGEvent (Code) | | An event indicating a attribute of the EditManager has changed.
author: Jesse since: 1.0.0 |
Field Summary | |
final public static int | EDIT_FEATURE Indicates the current edit feature has changed. | final public static int | EDIT_LAYER Indicates the current edit layer has changed. | final public static int | POST_COMMIT Indicates the transaction has been committed. | final public static int | POST_ROLLBACK Indicates the transaction has been rolledback. | final public static int | PRE_COMMIT Indicates the transaction is about to be committed. | final public static int | PRE_ROLLBACK Indicates the transaction is about to be rolledback. | final public static int | SELECTED_LAYER Indicates the currently selected layer has changed. |
EDIT_FEATURE | final public static int EDIT_FEATURE(Code) | | Indicates the current edit feature has changed.
The old value will be the last edit feature,
the new value will be the currently/newly edit feature
|
EDIT_LAYER | final public static int EDIT_LAYER(Code) | | Indicates the current edit layer has changed.
The old value will be the last edit layer,
the new value will be the currently/newly edit layer
|
POST_COMMIT | final public static int POST_COMMIT(Code) | | Indicates the transaction has been committed. Old and new values will be null.
|
POST_ROLLBACK | final public static int POST_ROLLBACK(Code) | | Indicates the transaction has been rolledback. Old and new values will be null.
|
PRE_COMMIT | final public static int PRE_COMMIT(Code) | | Indicates the transaction is about to be committed. Old and new values will be null.
|
PRE_ROLLBACK | final public static int PRE_ROLLBACK(Code) | | Indicates the transaction is about to be rolledback. Old and new values will be null.
|
SELECTED_LAYER | final public static int SELECTED_LAYER(Code) | | Indicates the currently selected layer has changed.
The old value will be the last selected layer,
the new value will be the currently/newly selected layer
|
EditManagerEvent | public EditManagerEvent(IEditManager source, int type, Object newValue, Object oldValue)(Code) | | Construct EditManagerEvent .
Parameters: source - the object that raised the event. Parameters: type - the type of event this object represents. Parameters: newValue - the new value, if this applies. Parameters: oldValue - the old value, if this applies. |
|
|