Package org.locationtech.udig.catalog.ui.export

Examples of org.locationtech.udig.catalog.ui.export.Data


                    if (filter == Filter.EXCLUDE) {
                        // no selection provided; so lets do everything
                        filter = Filter.INCLUDE;
                    }
                    DefaultQuery query = new DefaultQuery(layer.getSchema().getTypeName(), filter);
                    Data data2 = new Data(resource, query);
                    data2.setChecked(layer.isVisible());
                    data.add(data2);
                }
            } else if (object instanceof IMap) {
                List<ILayer> mapLayers = ((IMap) object).getMapLayers();
                for( ILayer l : mapLayers ) {
View Full Code Here

TOP

Related Classes of org.locationtech.udig.catalog.ui.export.Data

Copyright © 2018 www.massapicom. 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.