Lines Matching defs:Main
27 public class Main {
29 public Main() {}
30 public Main(ArrayList<Integer> stuff) {}
493 field = Main.class.getField("dummy");
502 method = Main.class.getMethod("fancyMethod",
514 ctor = Main.class.getConstructor(new Class[] { ArrayList.class });
548 field1 = Main.class.getField("dummy");
549 field2 = Main.class.getField("dummy");
565 method1 = Main.class.getMethod("fancyMethod", new Class[] { ArrayList.class });
566 method2 = Main.class.getMethod("fancyMethod", new Class[] { ArrayList.class });
582 public static void main(String[] args) throws Exception {
583 Main test = new Main();