| org.geotools.catalog.ResolveChangeEvent
All known Subclasses: org.geotools.catalog.defaults.DefaultResolveChangeEvent,
ResolveChangeEvent | public interface ResolveChangeEvent (Code) | | Captures changes to the Catalog.
For those familiar with IResourceChangeEvent and IResourceDelta from eclipse
development there is one important addition. The constant REPLACE
indicates a reaname, or substiution, you will need to replace any
references you have to the oldObject with the newObject.
author: Jody Garnett, Refractions Research since: 2.2.M3 |
Method Summary | |
ResolveDelta | getDelta() Returns a delta, rooted at the catalog, describing the set of changes
that happened to resources in the workspace. | Resolve | getResolve() Returns the handle in question. | Object | getSource() Returns an object identifying the source of this event. | Type | getType() Returns the type of event being reported. |
getDelta | ResolveDelta getDelta()(Code) | | Returns a delta, rooted at the catalog, describing the set of changes
that happened to resources in the workspace. Returns null
if not applicable to this type of event.
the resource delta, or null if not applicable |
getResolve | Resolve getResolve()(Code) | | Returns the handle in question. Returns null if not
applicable to this type of event.
the resource, or null if not applicable |
getSource | Object getSource()(Code) | | Returns an object identifying the source of this event.
an object identifying the source of this event See Also: java.util.EventObject |
|
|