ClassNameCompletionTest -> community

This commit is contained in:
peter
2009-10-15 19:04:14 +01:00
parent 4c2eb97ca9
commit 3d76ccc31a
74 changed files with 619 additions and 0 deletions
@@ -0,0 +1,5 @@
class FooFooFooFooFoo {
{
Object[] a = new FFFFF<caret>[];
}
}
@@ -0,0 +1,5 @@
class FooFooFooFooFoo {
{
Object[] a = new FooFooFooFooFoo<caret>[];
}
}
@@ -0,0 +1,8 @@
class LifeUniverseEverythingEntity {}
class LifeUniverseEverythingManager {}
class FooFooFooFooFoo {
{
LUEv<caret>
}
}
@@ -0,0 +1,8 @@
class LifeUniverseEverythingEntity {}
class LifeUniverseEverythingManager {}
class FooFooFooFooFoo {
{
LifeUniverseEverything<caret>
}
}
@@ -0,0 +1,5 @@
class FooFooFooFooFoo {
{
StringBuf<caret>
}
}
@@ -0,0 +1,5 @@
class FooFooFooFooFoo {
{
StringBuffer<caret>
}
}
@@ -0,0 +1,5 @@
class FooFooFooFooFoo {
{
new FFFFF<caret>();
}
}
@@ -0,0 +1,5 @@
class FooFooFooFooFoo {
{
new FooFooFooFooFoo()<caret>;
}
}
@@ -0,0 +1,7 @@
class FooFooFooFooFoo {
{
int a = 0;
ABCD<caret>
foo(new String[]{"a"}, 1);
}
}
@@ -0,0 +1,9 @@
import foo.bar.ABCDEF;
class FooFooFooFooFoo {
{
int a = 0;
ABCDEF<caret>
foo(new String[]{"a"}, 1);
}
}
@@ -0,0 +1,7 @@
class FooFooFooFooFoo {
{
new FFFFF<caret>(x);
}
FooFooFooFooFoo(int x) {}
}
@@ -0,0 +1,7 @@
class FooFooFooFooFoo {
{
new FooFooFooFooFoo(<caret>x);
}
FooFooFooFooFoo(int x) {}
}