Package org.locationtech.udig.catalog

Examples of org.locationtech.udig.catalog.IResolve.canResolve()


        }
        else if( PROPERTY_WMS.equals(property)){
            return resolve.canResolve( WebMapServer.class );           
        }
        else if( PROPERTY_WMS_LAYER.equals(property)){
            return resolve.canResolve( org.geotools.data.ows.Layer.class );           
        }
        else if( PROPERTY_SCHEMA.equals(property)){
            return resolve.canResolve( SimpleFeatureType.class );           
        }
        else if( PROPERTY_STYLE.equals(property)){
View Full Code Here


        }
        else if( PROPERTY_WMS_LAYER.equals(property)){
            return resolve.canResolve( org.geotools.data.ows.Layer.class );           
        }
        else if( PROPERTY_SCHEMA.equals(property)){
            return resolve.canResolve( SimpleFeatureType.class );           
        }
        else if( PROPERTY_STYLE.equals(property)){
            return resolve.canResolve( Style.class );           
        }
        return false;
View Full Code Here

        }
        else if( PROPERTY_SCHEMA.equals(property)){
            return resolve.canResolve( SimpleFeatureType.class );           
        }
        else if( PROPERTY_STYLE.equals(property)){
            return resolve.canResolve( Style.class );           
        }
        return false;
    }

}
View Full Code Here

public class WFSConnectionFactory extends UDIGConnectionFactory {

  public boolean canProcess( Object data ) {       
        if( data instanceof IResolve ){
            IResolve resolve = (IResolve) data;
            return resolve.canResolve( WFSDataStore.class );
        }
        return toCapabilitiesURL(data) != null;
    }

  public Map<String, Serializable> createConnectionParameters(Object data) {
View Full Code Here

public class WMSConnectionFactory extends UDIGConnectionFactory {

  public boolean canProcess(Object context) {
    if( context instanceof IResolve ){
           IResolve resolve = (IResolve) context;
           return resolve.canResolve( WebMapServer.class );
       }
       return toCapabilitiesURL(context) != null;       
  }
 
  public Map<String, Serializable> createConnectionParameters(Object context) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.