Files
openide/java/java-tests/testData/refactoring/introduceVariable/MethodCallInSwitch.java

11 lines
279 B
Java

class A {
int getContentElementType() {
return 0;
}
void method() {
switch (<selection>getContentElementType()</selection>) {
default: throw new IllegalArgumentException("Wrong content type: " + getContentElementType());
}
}
}