introduce parameter: ignore incomplete code

This commit is contained in:
anna
2009-12-02 18:29:17 +03:00
parent b28c452d6d
commit f9a621e904
5 changed files with 28 additions and 2 deletions
@@ -0,0 +1,10 @@
enum Test {
Root(position + "");
public Test(String description, String anObject) {
System.out.println(description);
System.out.println(anObject);
}
}
@@ -0,0 +1,10 @@
enum Test {
Root();
public Test(String description, int position) {
System.out.println(description);
System.out.println(<selection>position + ""</selection>);
}
}