Created utility class to casually inspect class files on the usage of classes, fields and methods

This commit is contained in:
Roel Spilker
2010-08-05 23:46:34 +02:00
parent d41a282e50
commit b14eef7eed
8 changed files with 469 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
public class Foo implements java.util.RandomAccess {
private static final String ONE = "Eén";
{
String value = toString();
System.out.print(value);
System.out.print("Two" + "Four");
}
}