Details
-
Type:
New Feature
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: UDIG 1.4.x
-
Fix Version/s: None
-
Component/s: catalog, metadata and search
-
Labels:None
Description
I would like Layer to be adaptable to a GeoResource so that I can easily work with layers from a catalog view.
public class LayerImpl extends EObjectImpl implements Layer {
....
public Object getAdapter( final Class adapter ) {
// Used to allow workbench selection to adapt an
// ILayer to a IGeoResource - this allows catalog views
// to interact with ILayer smoothly
if( IGeoResource.class.isAssignableFrom( adapter))
...