aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test4/Dyn.java
blob: 83418d4714db06f2cd0184ff1be55adcaa812dec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package test4;

public class Dyn {

  public static int test9(int i, String s) {
    return 9;
  }

  public int test8(int i, String s) {
    return 8;
  }

  public static Integer boot(String numberString)
      throws NoSuchMethodException, IllegalAccessException {
    return Integer.valueOf(numberString);
  }

  public Integer boot2(String numberString)
      throws NoSuchMethodException, IllegalAccessException {
    return Integer.valueOf(numberString);
  }
}