Files
openide/plugins/groovy/testdata/refactoring/changeSignatureForJava/AddConstructorParameter.groovy

7 lines
124 B
Groovy

class GroovyClass {
private final String someValue
GroovyClass(String someValue) {
this.someValue = someValue
}
}