/************* New class Test *************/ public class Test { // Class variable definition begins private static final double var1; // Class variable definition ends /************* New constructor Test *************/ public Test() { } /************* New method method1 *************/ public static boolean method1(int arg) { int var2; return false; } /************* New nested class NestedTest *************/ class NestedTest { } }