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

12 lines
310 B
Java

// "Create property 'appOutputPath' in 'X'" "true"
class X {
void initOutputChecker() {
getAppOutputPath();
}
protected RunContentDescriptor executeConfiguration() {
ApplicationManager.getApplication().invokeLater(() -> {
public void getAppOutputPath() {
return appOutputPath;
}