Examples of ExportResourceSelectionState


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

                if( resources.isEmpty() ){
                    return Result.NO_TEMP_LAYERS;
                }
               
                final StructuredSelection selection = new StructuredSelection(resources);
                final ExportResourceSelectionState layerState = new ExportResourceSelectionState(selection);
               
                CatalogExport exp = new MapSaveStrategy(layerState, mapEditor);

                // open the export dialog
                exp.open();
View Full Code Here

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

                if( resources.isEmpty() ){
                    return Result.NO_TEMP_LAYERS;
                }
               
                final StructuredSelection selection = new StructuredSelection(resources);
                final ExportResourceSelectionState layerState = new ExportResourceSelectionState(selection);
               
                CatalogExport exp = new MapPaletteSaveStrategy(layerState, mapEditor);

                // open the export dialog
                exp.open();
View Full Code Here

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

    /**
     * We want our subclass of {@link ExportResourceSelectionState} to be used instead
     */
    @Override
    protected Workflow createWorkflow() {
        ExportResourceSelectionState layerState = new ExportLayerSelectionState();
        Workflow workflow = new Workflow(new State[]{layerState});
        return workflow;
    }
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.