Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/afterPropertyInInvalidClass.java
Bart van Helvert 8780aa8862 [java-intentions] Improve create property from usage preview
GitOrigin-RevId: 6e9389c6d8b88bfa91de6c658cfc51039bfeefca
2022-11-02 12:49:31 +00:00

12 lines
318 B
Java

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