Package org.gvsig.fmap.dal
Interface DataStoreNotification
- All Superinterfaces:
org.gvsig.tools.observer.Notification
- All Known Subinterfaces:
FeatureStoreNotification,RasterStoreNotification
public interface DataStoreNotification
extends org.gvsig.tools.observer.Notification
This interface represents a notification produced by a DataStore.
Notifications can be of several types. This interface also defines a set
of constants that represent the types of notifications that a DataStore
can produce.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringFired after closing the storestatic final StringFired after disposing the storestatic final StringFired after opening the storestatic final StringFired before closing the storestatic final StringFired before disposing the storestatic final StringFired before opening the storestatic final StringComplex notification for special situationsstatic final StringFired when a resource of the store has changedstatic final StringFired after the store selection has changed -
Method Summary
Methods inherited from interface org.gvsig.tools.observer.Notification
abort, abort, cancel, getAbortCause, getType, getValue, getValue, isAborted, isCanceled, isOfType, setValue, setValue
-
Field Details
-
COMPLEX_NOTIFICATION
Complex notification for special situations- See Also:
-
BEFORE_OPEN
Fired before opening the store- See Also:
-
AFTER_OPEN
Fired after opening the store- See Also:
-
BEFORE_CLOSE
Fired before closing the store- See Also:
-
AFTER_CLOSE
Fired after closing the store- See Also:
-
BEFORE_DISPOSE
Fired before disposing the store- See Also:
-
AFTER_DISPOSE
Fired after disposing the store- See Also:
-
SELECTION_CHANGE
Fired after the store selection has changed- See Also:
-
RESOURCE_CHANGED
Fired when a resource of the store has changed- See Also:
-
-
Method Details
-
getSource
DataStore getSource()Returns the DataStore that produced this notification- Returns:
- DataStore source of this
-