Package org.eclipse.wb.internal.core.model.property.editor

Examples of org.eclipse.wb.internal.core.model.property.editor.EnumCustomPropertyEditor


    //
    // Constructor
    //
    ////////////////////////////////////////////////////////////////////////////
    public CellAlignmentProperty(WidgetInfo widget, String title, Class<T> enumClass, T defaultValue) {
      super(widget, title, new EnumCustomPropertyEditor());
      ((EnumCustomPropertyEditor) getEditor()).configure(enumClass);
      m_widget = widget;
      m_defaultValue = defaultValue;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.wb.internal.core.model.property.editor.EnumCustomPropertyEditor

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.