Package com.volantis.mcs.eclipse.ab.editors.layout

Examples of com.volantis.mcs.eclipse.ab.editors.layout.LayoutUnitsCombo


     * @param localizedUnits A list of LocalizedUnit
     */
    public LayoutNumberUnit(Composite parent, List localizedUnits) {
        super(parent, SWT.NONE);
        theText = new Text(this, SWT.BORDER);
        theCombo = new LayoutUnitsCombo(this, localizedUnits);

        GridLayout layout = new GridLayout(2, false);
        layout.marginWidth = 0;
        layout.marginHeight = 0;
        theText.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
View Full Code Here

TOP

Related Classes of com.volantis.mcs.eclipse.ab.editors.layout.LayoutUnitsCombo

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.