| net.refractions.udig.catalog.IResolveChangeEvent
All known Subclasses: net.refractions.udig.catalog.internal.ResolveChangeEvent,
IResolveChangeEvent | public interface IResolveChangeEvent (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: jgarnett since: 0.6.0 |
Inner Class :public enum Type | |
Method Summary | |
public IResolveDelta | getDelta() Returns a delta, rooted at the catalog, describing the set of changes that happened to
resources in the workspace. | public IResolve | getResolve() Returns the handle in question. | public Object | getSource() Returns an object identifying the source of this event. | public Type | getType() Returns the type of event being reported. |
getDelta | public IResolveDelta 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 | public IResolve 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 | public 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 |
|
|