Package org.locationtech.udig.ui.filter

Examples of org.locationtech.udig.ui.filter.ExpressionViewer$ExpressionViewerFactoryContributionItem


       
        final Label exLabel = new Label(page, SWT.NONE);
        exLabel.setText(Messages.InfoPropertyPage_labelExpression);
        exLabel.setLayoutData(""); //$NON-NLS-1$
       
        exViewer = new ExpressionViewer(page, SWT.MULTI);
        exViewer.getControl().setLayoutData("h 100%!, w 100%!"); //$NON-NLS-1$
        final ExpressionInput exInput = new ExpressionInput(getSchema());
        exInput.setBinding(String.class);
        exViewer.setInput(exInput);
        exViewer.refresh();
View Full Code Here


        name = new Text(this, SWT.SINGLE | SWT.BORDER);
        name.setEditable(true);
        name.setText("");
        name.setLayoutData("cell 0 7 2 1");

        expression = new ExpressionViewer(this, SWT.MULTI);
        // expression.setInput(expressionInput);
        expression.getControl()
                .setLayoutData("cell 0 8 2 1,height 200:50%:50%,width 300:pref:100%");
        expression.addSelectionChangedListener(expressionListener);
View Full Code Here

TOP

Related Classes of org.locationtech.udig.ui.filter.ExpressionViewer$ExpressionViewerFactoryContributionItem

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.