jidefx.scene.control.combobox.ValuesComboBox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jidefx-fields Show documentation
Show all versions of jidefx-fields Show documentation
JideFX Common Layer is a collection of several extend feature for JavaFX
The newest version!
/*
* @(#)ValuesComboBox.java 5/19/2013
*
* Copyright 2002 - 2013 JIDE Software Inc. All rights reserved.
*/
package jidefx.scene.control.combobox;
/**
* An abstract {@code FormattedComboBox} for any data types that can be represented as a value array.
*/
public abstract class ValuesComboBox extends FormattedComboBox {
private static final String STYLE_CLASS_DEFAULT = "values-combo-box"; //NON-NLS
public ValuesComboBox() {
}
public ValuesComboBox(T value) {
super(value);
}
@Override
protected void initializeStyle() {
super.initializeStyle();
getStyleClass().add(STYLE_CLASS_DEFAULT);
}
}