blob: a05faa4bfb6f06d7b4484ca8f57d41dc97ab9f84 [file] [log] [blame]
public class FieldTest {
private Object comboBox;
private class NoSelectionComboItem {
private NoSelectionComboItem() {
}
public String getLabel() {
Object comboItem = <selection>comboBox</selection>.getSelectedItem();
return comboItem == this ? "<Please Select>" : "<Back to overview>";
}
}
}