Tabnine Logo
org.jdesktop.swingx.combobox
Code IndexAdd Tabnine to your IDE (free)

How to use org.jdesktop.swingx.combobox

Best Java code snippets using org.jdesktop.swingx.combobox (Showing top 20 results out of 315)

origin: Haehnchen/idea-php-symfony2-plugin

private void appendSymfonyVersions()
{
  comboVersions.setModel(new ListComboBoxModel<>(new ArrayList<>()));
  ApplicationManager.getApplication().executeOnPooledThread(() -> {
    final List<SymfonyInstallerVersion> symfonyInstallerVersions1 = getVersions();
    if (symfonyInstallerVersions1 != null) {
      UIUtil.invokeLaterIfNeeded(() -> comboVersions.setModel(new ListComboBoxModel<>(symfonyInstallerVersions1)));
    }
  });
}
origin: com.haulmont.thirdparty/swingx-core

/**
 * Creates a model backed by the specified map.
 * 
 * @param map
 *                the map backing this model
 */
public MapComboBoxModel(Map<K, V> map) {
  super(buildIndex(map));
  
  this.map_data = map;
}
 
origin: org.codehaus.jtstand/jtstand-desktop

  /**
   * Selects an item from the model and returns that map value.
   * 
   * @param selectedItem
   *                selects the item at the specified index in this model
   * @return the value for the item at the selected index
   */
  public V getValue(int selectedItem) {
    return getValue(getElementAt(selectedItem));
  }
}
origin: lbalazscs/Pixelitor

@Override
public int getSize() {
  return delegateModel.getSize();
}
origin: lbalazscs/Pixelitor

public TwoPointPaintType getSelectedFillPaint() {
  return fillPaintModel.getSelectedItem();
}
origin: lbalazscs/Pixelitor

@Override
public void removeListDataListener(ListDataListener l) {
  delegateModel.removeListDataListener(l);
}
origin: lbalazscs/Pixelitor

@Override
public E getElementAt(int index) {
  return delegateModel.getElementAt(index);
}
origin: lbalazscs/Pixelitor

@Override
public void addListDataListener(ListDataListener l) {
  delegateModel.addListDataListener(l);
}
origin: org.swinglabs.swingx/swingx-all

  /**
   * Selects an item from the model and returns that map value.
   * 
   * @param selectedItem
   *                selects the item at the specified index in this model
   * @return the value for the item at the selected index
   */
  public V getValue(int selectedItem) {
    return getValue(getElementAt(selectedItem));
  }
}
origin: org.swinglabs.swingx/swingx-core

/**
 * Creates a model backed by the specified map.
 * 
 * @param map
 *                the map backing this model
 */
public MapComboBoxModel(Map<K, V> map) {
  super(buildIndex(map));
  
  this.map_data = map;
}
 
origin: lbalazscs/Pixelitor

public E getSelected() {
  return delegateModel.getSelectedItem();
}
origin: org.bidib.jbidib.swinglabs.swingx/swingx-core

  /**
   * Selects an item from the model and returns that map value.
   * 
   * @param selectedItem
   *                selects the item at the specified index in this model
   * @return the value for the item at the selected index
   */
  public V getValue(int selectedItem) {
    return getValue(getElementAt(selectedItem));
  }
}
origin: org.swinglabs.swingx/swingx-all

/**
 * Creates a model backed by the specified map.
 * 
 * @param map
 *                the map backing this model
 */
public MapComboBoxModel(Map<K, V> map) {
  super(buildIndex(map));
  
  this.map_data = map;
}
 
origin: lbalazscs/Pixelitor

@Override
public Object getSelectedItem() {
  return delegateModel.getSelectedItem();
}
origin: com.haulmont.thirdparty/swingx-core

  /**
   * Selects an item from the model and returns that map value.
   * 
   * @param selectedItem
   *                selects the item at the specified index in this model
   * @return the value for the item at the selected index
   */
  public V getValue(int selectedItem) {
    return getValue(getElementAt(selectedItem));
  }
}
origin: org.bidib.jbidib.swinglabs.swingx/swingx-core

/**
 * Creates a model backed by the specified map.
 * 
 * @param map
 *                the map backing this model
 */
public MapComboBoxModel(Map<K, V> map) {
  super(buildIndex(map));
  
  this.map_data = map;
}
 
origin: lbalazscs/Pixelitor

public TwoPointPaintType getSelectedStrokePaint() {
  return strokePaintModel.getSelectedItem();
}
origin: org.swinglabs.swingx/swingx-core

  /**
   * Selects an item from the model and returns that map value.
   * 
   * @param selectedItem
   *                selects the item at the specified index in this model
   * @return the value for the item at the selected index
   */
  public V getValue(int selectedItem) {
    return getValue(getElementAt(selectedItem));
  }
}
origin: org.codehaus.jtstand/jtstand-desktop

/**
 * Creates a model backed by the specified map.
 * 
 * @param map
 *                the map backing this model
 */
public MapComboBoxModel(Map<K, V> map) {
  super(buildIndex(map));
  
  this.map_data = map;
}
 
origin: lbalazscs/Pixelitor

public ShapeType getSelectedType() {
  return typeModel.getSelectedItem();
}
org.jdesktop.swingx.combobox

Most used classes

  • ListComboBoxModel
    A ComboBoxModel for Lists.
  • MapComboBoxModel
    A ComboBoxModel for Maps. The model will always present a Mapconsistently, once it is instantiated.
  • EnumComboBoxModel
    A ComboBoxModel implementation that safely wraps an Enum. It allows the developer to directly use a
  • ListModelComboBoxWrapper
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now