IDEADEV-25972
[fedora-idea.git] / testData / refactoring / introduceField / afterOuterClass.java
blob1ee698f2670934b369b6bfb39b9d556dadf76c3b
1 public class FieldTest {
2 private Object comboBox;
4 private class NoSelectionComboItem {
5 public final Object comboBox;
7 private NoSelectionComboItem() {
8 comboBox = FieldTest.this.comboBox;
11 public String getLabel() {
12 Object comboItem = comboBox.getSelectedItem();
13 return comboItem == this ? "<Please Select>" : "<Back to overview>";