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 A{
void foo() {
throw new OurException()<caret>
}
}
@@ -0,0 +1,5 @@
class A{
void foo() {
throw new OurNotException.InnerException()<caret>
}
}
@@ -0,0 +1,5 @@
class A{
void foo() {
throw new Our<caret>
}
}
@@ -0,0 +1,5 @@
class A{
void foo() {
throw new Inner<caret>
}
}
@@ -0,0 +1,3 @@
public class OurException extends Throwable{
}
@@ -0,0 +1,6 @@
public class OurNotException {
public static class InnerException extends Throwable{
}
public static class InnerNonException{
}
}