Package com.salesforce.ide.ui.editors.properysheets.widgets

Examples of com.salesforce.ide.ui.editors.properysheets.widgets.TextFieldWidget


        Composite sectionClient = toolkit.createComposite(generalInformation);
        sectionClient.setLayout(new GridLayout(2, false));

        // Api Version
        apiText = new TextFieldWidget(toolkit, EditorMessages.getString("ApexMetadataFormPage.APIVersionLabel"), "0.0"); //$NON-NLS-1$ //$NON-NLS-2$
        apiText.addTo(sectionClient);

        generalInformation.setClient(sectionClient);
    }
View Full Code Here


        Composite sectionClient = toolkit.createComposite(generalInformation);
        sectionClient.setLayout(new GridLayout(2, false));

        // Label
        labelText = new TextFieldWidget(toolkit, "Label", "");
        labelText.addTo(sectionClient);

        // Description
        descriptionText = new TextFieldWidget(toolkit, "Description", "");
        descriptionText.addTo(sectionClient);

        // Api Version
        apiText = new TextFieldWidget(toolkit, EditorMessages.getString("ApexMetadataFormPage.APIVersionLabel"), "0.0"); //$NON-NLS-1$ //$NON-NLS-2$
        apiText.addTo(sectionClient);

        generalInformation.setClient(sectionClient);
    }
View Full Code Here

        Composite sectionClient = toolkit.createComposite(generalInformation);
        sectionClient.setLayout(new GridLayout(2, false));

        // Label
        labelText = new TextFieldWidget(toolkit, EditorMessages.getString("ApexMetadataFormPage.LabelLabel"), ""); //$NON-NLS-1$
        labelText.addTo(sectionClient);

        // Description
        descriptionText =
                new TextFieldWidget(toolkit, EditorMessages.getString("ApexMetadataFormPage.DescriptionLabel"), ""); //$NON-NLS-1$
        descriptionText.addTo(sectionClient);

        // Api Version
        apiText = new TextFieldWidget(toolkit, EditorMessages.getString("ApexMetadataFormPage.APIVersionLabel"), "0.0"); //$NON-NLS-1$
        apiText.addTo(sectionClient);

        // Touch
        isAvailableInTouchCheckbox =
                new CheckBoxWidget(toolkit, EditorMessages.getString("ApexMetadataFormPage.MobileAppsLabel"), false); //$NON-NLS-1$
View Full Code Here

        Composite sectionClient = toolkit.createComposite(generalInformation);
        sectionClient.setLayout(new GridLayout(2, false));

        // Api Version
        apiText = new TextFieldWidget(toolkit, EditorMessages.getString("ApexMetadataFormPage.APIVersionLabel"), "0.0"); //$NON-NLS-1$ //$NON-NLS-2$
        apiText.addTo(sectionClient);

        // Status
        statusCombo =
                new ComboWidget<ApexCodeUnitStatus>(toolkit,
View Full Code Here

TOP

Related Classes of com.salesforce.ide.ui.editors.properysheets.widgets.TextFieldWidget

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.