Package org.locationtech.udig.omsbox.core

Examples of org.locationtech.udig.omsbox.core.FieldData


        // the scroller gets the control of the tab item
        tab.setControl(scroller);

        int[] row = new int[]{0};
        for( int j = 0; j < inputsList.size(); j++ ) {
            FieldData inputData = inputsList.get(j);
            if (hideComplex && !inputData.isSimpleType() && !OmsBoxUtils.isFieldExceptional(inputData)) {
                continue;
            }

            // remove region related widgets, if the user chose to not have them.
            if (inputData.isProcessingRegionRelated() && OmsBoxPlugin.getDefault().doIgnoreProcessingRegion()) {
                continue;
            }

            List<ModuleGuiElement> inputList = formGuiFactory.createInputGui(inputData, row);
            for( ModuleGuiElement moduleGuiElement : inputList ) {
View Full Code Here


        // the scroller gets the control of the tab item
        tab.setControl(scroller);

        int[] row = new int[]{0};
        for( int j = 0; j < outputsList.size(); j++ ) {
            FieldData outputData = outputsList.get(j);
            if (hideComplex && !outputData.isSimpleType()) {
                continue;
            }

            // remove region related widgets, if the user chose to not have them.
            if (outputData.isProcessingRegionRelated() && OmsBoxPlugin.getDefault().doIgnoreProcessingRegion()) {
                continue;
            }

            List<ModuleGuiElement> ouputList = formGuiFactory.createOutputGui(outputData, row);
            for( ModuleGuiElement moduleGuiElement : ouputList ) {
View Full Code Here

TOP

Related Classes of org.locationtech.udig.omsbox.core.FieldData

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.