Package org.locationtech.udig.catalog.ui.workflow

Examples of org.locationtech.udig.catalog.ui.workflow.IntermediateState


        UDIGConnectionPage tmp;

        // create the specific connection page
        if (state instanceof IntermediateState) {
            IntermediateState intermediateState = (IntermediateState) state;
            EndConnectionState endConnectionState = (EndConnectionState) intermediateState
                    .getEndState();

            tmp = endConnectionState.getConnectionFactory().createConnectionPage(
                    intermediateState.getIndex());
        } else {
            EndConnectionState endConnectionState = (EndConnectionState) state;
            tmp = (endConnectionState).getConnectionFactory().createConnectionPage(
                    endConnectionState.getDescriptor().getWizardPageCount() - 1);
        }
View Full Code Here

TOP

Related Classes of org.locationtech.udig.catalog.ui.workflow.IntermediateState

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.