mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
ClassNameCompletionTest -> community
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
@interface Column {
|
||||
String name();
|
||||
}
|
||||
|
||||
@Column(<caret>)
|
||||
@interface Annotation {
|
||||
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
@interface Column {
|
||||
String name();
|
||||
}
|
||||
|
||||
Colu<caret>
|
||||
@interface Annotation {
|
||||
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
import java.io.FileInputStream;
|
||||
|
||||
class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
equals(FileInputStream<caret>aaa);
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
equals(FileInputStrea<caret>aaa);
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
// java.io.FileInputStream<caret>
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
// java.FileInputStrea<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
import static java.io.FileInputStream<caret>
|
||||
|
||||
class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
equals(FileInputStrea<caret>aaa);
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
import static FileInpStre<caret>
|
||||
|
||||
class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
equals(FileInputStrea<caret>aaa);
|
||||
}
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
class Main {
|
||||
|
||||
foo.bar.AxBxCxDxEx<caret>
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
class Main {
|
||||
|
||||
ABCDE<caret>
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
class ZZZZZZ{}
|
||||
|
||||
class A implements Foo, ZZZZZZ<caret>{}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
class ZZZZZZ{}
|
||||
|
||||
class A implements Foo, ZZZ<caret>{}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
class ZZZZZZ{}
|
||||
|
||||
class A implements Foo<ZZZZZZ<caret>
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
class ZZZZZZ{}
|
||||
|
||||
class A implements Foo<ZZZ<caret>
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class MyClass1 {
|
||||
{
|
||||
MyClass1<caret>foo()
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class MyClass1 {
|
||||
{
|
||||
MCla<caret>foo()
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class MyClass1 {
|
||||
{
|
||||
MyClass1<caret>f.oo()
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class MyClass1 {
|
||||
{
|
||||
MCla<caret>f.oo()
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
class MyClass1 {
|
||||
MyClass1<caret>
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
class MyClass1 {
|
||||
MyCla<caret>
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package aaa;
|
||||
@interface MyObjectType {}
|
||||
class A {
|
||||
aaa.MyObjectType<caret>
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package aaa;
|
||||
@interface MyObjectType {}
|
||||
class A {
|
||||
aaa.MyObj<caret>
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package aaa;
|
||||
@interface MyObjectType {}
|
||||
class A {
|
||||
MyObjectType<caret>
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package aaa;
|
||||
@interface MyObjectType {}
|
||||
class A {
|
||||
MyObj<caret>
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package aaa;
|
||||
@interface MyObjectType {}
|
||||
class A {
|
||||
void aaa() {
|
||||
getClass().getAnnotations(MyObjectType<caret>)
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package aaa;
|
||||
@interface MyObjectType {}
|
||||
class A {
|
||||
void aaa() {
|
||||
getClass().getAnnotations(MyObject<caret>)
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package aaa;
|
||||
import java.lang.annotation.*;
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@interface MyObjectType {}
|
||||
|
||||
class A {
|
||||
MyObjectType<caret>
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package aaa;
|
||||
import java.lang.annotation.*;
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@interface MyObjectType {}
|
||||
|
||||
class A {
|
||||
My<caret>
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class Test1 {
|
||||
public void foo(){
|
||||
Test1<caret>
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class Test1 {
|
||||
public void foo(){
|
||||
Tes<caret>
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
class ZZZZZZ{}
|
||||
|
||||
class A implements ZZZZZZ<caret>{}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
class ZZZZZZ{}
|
||||
|
||||
class A implements ZZZ<caret>{}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
interface ZZZZZZ{}
|
||||
|
||||
class A implements ZZZZZZ<caret>{}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
interface ZZZZZZ{}
|
||||
|
||||
class A implements ZZZ<caret>{}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class MyObject {}
|
||||
@interface MyObjectType {}
|
||||
|
||||
@MyObjectType<caret>
|
||||
class A {}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class MyObject {}
|
||||
@interface MyObjectType {}
|
||||
|
||||
@MyObj<caret>
|
||||
class A {}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
@interface MyObjectType {}
|
||||
|
||||
class A {
|
||||
void aaa(@MyObjectType<caret>);
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
@interface MyObjectType {}
|
||||
|
||||
class A {
|
||||
void aaa(@MyObj<caret>);
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import MyObjectType<caret>
|
||||
@interface MyObjectType {}
|
||||
class A {}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import MyObj<caret>
|
||||
@interface MyObjectType {}
|
||||
class A {}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import MyObjectType<caret>
|
||||
@interface MyObjectType {
|
||||
int param();
|
||||
}
|
||||
class A {}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import MyObj<caret>
|
||||
@interface MyObjectType {
|
||||
int param();
|
||||
}
|
||||
class A {}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
@interface MyObjectType {
|
||||
int param();
|
||||
}
|
||||
class A {
|
||||
void foo() {
|
||||
MyObjectType<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
@interface MyObjectType {
|
||||
int param();
|
||||
}
|
||||
class A {
|
||||
void foo() {
|
||||
MyOb<caret>
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class MyClass1 {
|
||||
{
|
||||
MyClass1<caret>f.oo()
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
class MyClass1 {
|
||||
{
|
||||
MCla<caret>f.oo()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user