IDEADEV-25972
[fedora-idea.git] / testData / refactoring / introduceField / beforeOuterClass.java
bloba05faa4bfb6f06d7b4484ca8f57d41dc97ab9f84
1 public class FieldTest {
2 private Object comboBox;
4 private class NoSelectionComboItem {
5 private NoSelectionComboItem() {
8 public String getLabel() {
9 Object comboItem = <selection>comboBox</selection>.getSelectedItem();
10 return comboItem == this ? "<Please Select>" : "<Back to overview>";