Package org.eclipse.ui.forms.widgets

Examples of org.eclipse.ui.forms.widgets.FormToolkit.createLabel()


        singleValue_checkbox = toolkit.createButton( client_general_information, Messages
            .getString( "AttributeTypeFormEditorOverviewPage.Single-Value" ), SWT.CHECK ); //$NON-NLS-1$
        singleValue_checkbox.setLayoutData( new GridData( SWT.FILL, 0, true, false ) );

        // COLLECTIVE Checkbox
        toolkit.createLabel( client_general_information, "" ); // Filling the first column //$NON-NLS-1$
        collective_checkbox = toolkit.createButton( client_general_information, Messages
            .getString( "AttributeTypeFormEditorOverviewPage.Collective" ), SWT.CHECK ); //$NON-NLS-1$
        collective_checkbox.setLayoutData( new GridData( SWT.FILL, 0, true, false ) );

        // NO-USER-MODIFICATION Checkbox
View Full Code Here


        section_matching_rules.setClient( client_matching_rules );
        section_matching_rules.setLayoutData( new GridData( GridData.FILL_BOTH ) );

        // Adding elements to the section
        // EQUALITY Combo
        toolkit
            .createLabel( client_matching_rules, Messages.getString( "AttributeTypeFormEditorOverviewPage.Equility" ) ); //$NON-NLS-1$
        equality_combo = new Combo( client_matching_rules, SWT.READ_ONLY | SWT.SINGLE );
        equality_combo.setLayoutData( new GridData( SWT.FILL, 0, true, false ) );

        // ORDERING Combo
View Full Code Here

            .createLabel( client_matching_rules, Messages.getString( "AttributeTypeFormEditorOverviewPage.Equility" ) ); //$NON-NLS-1$
        equality_combo = new Combo( client_matching_rules, SWT.READ_ONLY | SWT.SINGLE );
        equality_combo.setLayoutData( new GridData( SWT.FILL, 0, true, false ) );

        // ORDERING Combo
        toolkit
            .createLabel( client_matching_rules, Messages.getString( "AttributeTypeFormEditorOverviewPage.Ordering" ) ); //$NON-NLS-1$
        ordering_combo = new Combo( client_matching_rules, SWT.READ_ONLY | SWT.SINGLE );
        ordering_combo.setLayoutData( new GridData( SWT.FILL, 0, true, false ) );

        // SUBSTRING Combo
View Full Code Here

            .createLabel( client_matching_rules, Messages.getString( "AttributeTypeFormEditorOverviewPage.Ordering" ) ); //$NON-NLS-1$
        ordering_combo = new Combo( client_matching_rules, SWT.READ_ONLY | SWT.SINGLE );
        ordering_combo.setLayoutData( new GridData( SWT.FILL, 0, true, false ) );

        // SUBSTRING Combo
        toolkit.createLabel( client_matching_rules, Messages
            .getString( "AttributeTypeFormEditorOverviewPage.Substring" ) ); //$NON-NLS-1$
        substring_combo = new Combo( client_matching_rules, SWT.READ_ONLY | SWT.SINGLE );
        substring_combo.setLayoutData( new GridData( SWT.FILL, 0, true, false ) );

        // Initialization from the "input" attribute type
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.