find type parameters for class
[fedora-idea.git] / java / java-tests / testData / refactoring / inlineMethod / ChainingConstructor.java
blob58b16bc567e84c4d0d0c8dcd42d09c99d5bd30a4
1 class InlineMethodTest {
2 public static InlineMethodTest createInstance() {
3 return new InlineMethodTest(0);
6 protected <caret>InlineMethodTest(int y) {
7 this("hello world", y);
10 protected InlineMethodTest() {
11 this(0);
14 public InlineMethodTest(String text, int i) {
18 class Derived extends InlineMethodTest {
19 public Derived(int i) {
20 super(i);