Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createConstructorFromCall/after2.java
2010-06-25 12:46:40 +04:00

12 lines
288 B
Java

// "Create Constructor" "true"
public class Test {
public void main2() {
new MyCollection(this);
}
}
class MyCollection {
public MyCollection(Test test) {
<selection>//To change body of created methods use File | Settings | File Templates.</selection>
}
}