List of usage examples for org.eclipse.jface.viewers ComboBoxCellEditor subclass-usage
From source file cellEditors.BoolComboEditor.java
public class BoolComboEditor extends ComboBoxCellEditor implements IPairItem { Map pairs = null; CCombo comboBox; int previousIndex = -1;
From source file cellEditors.ComboROCellEditor.java
public class ComboROCellEditor extends ComboBoxCellEditor implements IPairItem { Map pairs = null; public ComboROCellEditor() { }
From source file cellEditors.IntComboEditor.java
public class IntComboEditor extends ComboBoxCellEditor implements IPairItem { Map pairs = null; public IntComboEditor(Composite parent, String[] items) { super(parent, items);
From source file cellEditors.RealComboEditor.java
public class RealComboEditor extends ComboBoxCellEditor implements IPairItem { Map pairs = null; public RealComboEditor() { // Auto-generated constructor stub
From source file cellEditors.StringComboEditor.java
public class StringComboEditor extends ComboBoxCellEditor implements IPairItem { Map pairs = null; public StringComboEditor() { // Auto-generated constructor stub
From source file codemirror.eclipse.ui.xquery.viewers.StringComboBoxCellEditor.java
/**
* An extended ComboBoxCellEditor that selects and returns Strings. The code
* comes from
* org.eclipse.wst.xml.ui.internal.properties.StringComboBoxCellEditor and
* manages "add item in the combo when it is not found."
*/
From source file com.android.ide.eclipse.adt.internal.editors.ui.ListValueCellEditor.java
/** * ComboBoxCellEditor able to receive a {@link UiListAttributeNode} in the {@link #setValue(Object)} * method, and returning a {@link String} in {@link #getValue()} instead of an {@link Integer}. */ public class ListValueCellEditor extends ComboBoxCellEditor { private String[] mItems;
From source file com.android.ide.eclipse.auidt.internal.editors.ui.ListValueCellEditor.java
/** * ComboBoxCellEditor able to receive a {@link UiListAttributeNode} in the {@link #setValue(Object)} * method, and returning a {@link String} in {@link #getValue()} instead of an {@link Integer}. */ public class ListValueCellEditor extends ComboBoxCellEditor { private String[] mItems;
From source file com.android.ide.eclipse.editors.ui.ListValueCellEditor.java
/** * ComboBoxCellEditor able to receive a {@link UiListAttributeNode} in the {@link #setValue(Object)} * method, and returning a {@link String} in {@link #getValue()} instead of an {@link Integer}. */ public class ListValueCellEditor extends ComboBoxCellEditor { private String[] mItems;
From source file com.archimatetool.editor.ui.components.StringComboBoxCellEditor.java
/**
* String ComboBox CellEditor
* Uses Strings as input rather than Integer index
*
* @author Phillip Beauvoir
*/