public class FieldTest { private Object comboBox; private class NoSelectionComboItem { private NoSelectionComboItem() { } public String getLabel() { Object comboItem = comboBox.getSelectedItem(); return comboItem == this ? "" : ""; } } }