mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 22:09:57 +07:00
IDEA-58049 partial implementation
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
// "Add type parameter to 'Foo'" "true"
|
||||
|
||||
class Foo<caret><T extends Integer, S> {
|
||||
|
||||
void method() {
|
||||
Foo<Integer, String> foo = new Foo();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Add type parameter to 'Foo'" "true"
|
||||
|
||||
class Foo<caret><S, T extends Integer> {
|
||||
|
||||
void method() {
|
||||
Foo<String, Integer> foo = new Foo();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "<html>Change signature of 'Foo' to 'Foo<<b>S</b>, T extends Integer, <b>S1</b>>'</html>" "true"
|
||||
|
||||
class Foo<caret><S, T extends Integer, S1> {
|
||||
|
||||
void method() {
|
||||
Foo<String, Integer, String> foo = new Foo();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Add type parameter to 'Foo'" "true"
|
||||
|
||||
class Foo<caret><T extends Integer, S, K extends Integer> {
|
||||
|
||||
void method() {
|
||||
Foo<Integer, String, Integer> foo = new Foo();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Add type parameter to 'Foo'" "true"
|
||||
|
||||
class Foo<caret><S> {
|
||||
|
||||
void method() {
|
||||
Foo<String> foo = new Foo();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Add type parameter to 'Foo'" "true"
|
||||
|
||||
class Foo<T extends Integer> {
|
||||
|
||||
void method() {
|
||||
Foo<Integer, St<caret>ring> foo = new Foo();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Add type parameter to 'Foo'" "true"
|
||||
|
||||
class Foo<T extends Integer> {
|
||||
|
||||
void method() {
|
||||
Foo<St<caret>ring, Integer> foo = new Foo();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "<html>Change signature of 'Foo' to 'Foo<<b>S</b>, T extends Integer, <b>S1</b>>'</html>" "true"
|
||||
|
||||
class Foo<T extends Integer> {
|
||||
|
||||
void method() {
|
||||
Foo<String, Integer, St<caret>ring> foo = new Foo();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Add type parameter to 'Foo'" "true"
|
||||
|
||||
class Foo<T extends Integer, K extends Integer> {
|
||||
|
||||
void method() {
|
||||
Foo<Integer, St<caret>ring, Integer> foo = new Foo();
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Add type parameter to 'Foo'" "true"
|
||||
|
||||
class Foo {
|
||||
|
||||
void method() {
|
||||
Foo<St<caret>ring> foo = new Foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user