List of usage examples for org.eclipse.jface.viewers ComboViewer subclass-usage
From source file com.foglyn.helpers.DateConditionComboViewer.java
public class DateConditionComboViewer extends ComboViewer { public static DateConditionComboViewer create(Composite parent, int style, String nullValueLabel) { DateConditionComboViewer combo = new DateConditionComboViewer(parent, style); combo.setContentProvider(new CollectionContentProvider(true)); combo.setLabelProvider(new NullValueLabelProvider(nullValueLabel, new DateConditionProvider()));
From source file com.foglyn.helpers.FBDatatypeComboViewer.java
public class FBDatatypeComboViewer<I extends ID, T extends HasID<I>> extends ComboViewer { public static <I extends ID, T extends HasID<I>> FBDatatypeComboViewer<I, T> create(Class<T> clazz, Composite parent, int style, String nullValueLabel, ILabelProvider labelProvider) { FBDatatypeComboViewer<I, T> combo = new FBDatatypeComboViewer<I, T>(clazz, parent, style);
From source file com.foglyn.helpers.FBStatusesComboViewer.java
public class FBStatusesComboViewer extends ComboViewer { private FBStatusItemLabelProvider labelProvider; private FBStatusItemFilter statusFilter; public FBStatusesComboViewer(Composite parent, int style, String nullValueLabel) { super(parent, style);
From source file com.subgraph.vega.ui.http.conditions.ConditionTypeComboViewer.java
public class ConditionTypeComboViewer extends ComboViewer { private MatchActionComboViewer matchActionViewer; public ConditionTypeComboViewer(Composite parent, List<IHttpConditionType> conditionTypes) { super(parent, SWT.READ_ONLY);
From source file com.subgraph.vega.ui.http.conditions.MatchActionComboViewer.java
public class MatchActionComboViewer extends ComboViewer { private MatchActionArgumentPanel argumentPanel; public MatchActionComboViewer(Composite parent) { super(parent, SWT.READ_ONLY);
From source file era.foss.ui.contrib.ColorComboViewer.java
/** * The Class ColorComboViewer. */ public class ColorComboViewer extends ComboViewer { /**
From source file org.eclipse.papyrus.views.properties.providers.EncapsulatedComboViewer.java
@Deprecated public class EncapsulatedComboViewer extends ComboViewer { public EncapsulatedComboViewer(ComboViewer viewer) { super(viewer.getCCombo()); if (viewer.getContentProvider() != null) {
From source file org.goko.common.elements.combo.GkCombo.java
public class GkCombo<T extends LabeledValue> extends ComboViewer { private List<T> choices; public GkCombo(Combo list) { super(list); setContentProvider(new ArrayContentProvider());
From source file org.goko.common.elements.combo.v2.GkCombo2.java
public class GkCombo2<T> extends ComboViewer { private static final GkLog LOG = GkLog.getLogger(GkCombo2.class); public GkCombo2(Composite parent, int style) { super(parent, style);
From source file org.gw4e.eclipse.studio.editor.outline.filter.ThreeStateComboChoice.java
public class ThreeStateComboChoice extends ComboViewer { private static ThreeStateChoice[] choices = new ThreeStateChoice[] { ThreeStateChoice.NO_VALUE, ThreeStateChoice.NO, ThreeStateChoice.YES, }; public ThreeStateComboChoice(Composite parent, ISelectionChangedListener listener) { super(parent, SWT.READ_ONLY);