Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/afterStaticMethodNotInInterface.java

11 lines
230 B
Java

// "Create Method 'f'" "true"
interface I {}
class A implements I {
{
A.f();
}
private static void f() {
<selection>//To change body of created methods use File | Settings | File Templates.</selection>
}
}