D | MethodHandlesTest.java | 411 static class Example implements IntExample { class in MethodHandlesTest 413 public Example() { name = "Example#"+nextArg(); } in Example() method in MethodHandlesTest.Example 414 protected Example(String name) { this.name = name; } in Example() method in MethodHandlesTest.Example 416 protected Example(int x) { this(); called("protected <init>", this, x); } in Example() method in MethodHandlesTest.Example 443 public Example(String x, int y) { this.name = x+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example 444 public Example(int x, String y) { this.name = x+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example 445 public Example(int x, int y) { this.name = x+""+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example 446 public Example(int x, long y) { this.name = x+""+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example 447 public Example(int x, float y) { this.name = x+""+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example 448 public Example(int x, double y) { this.name = x+""+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example [all …]
|