Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createConstructorFromCall/afterIncompleteEnum.java
2014-12-06 13:25:00 +03:00

8 lines
147 B
Java

// "Create constructor" "true"
public enum ReportType {
AGING("Aging");
ReportType(String aging) {
<selection></selection>
}
}