summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/hjp5/examples/Listing4301.java
blob: 562bd1c2b5d3f3923876e542d9517d5516c452f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/* Listing4301.java */

import java.io.*;

interface HelloMeth
{
  public void hello();
}

class CA
implements HelloMeth
{
  public void hello()
  {
    System.out.println("hello CA");
  }
}

class CB
implements HelloMeth
{
  public void hello()
  {
    System.out.println("hello CB");
  }
}

class CC
{
  public void hello()
  {
    System.out.println("hello CC");
  }
}

class CD
{
  public void hallo()
  {
    System.out.println("hallo CD");
  }
}

public class Listing4301
{
  public static void main(String[] args)
  {
    String buf = "";
    BufferedReader in = new BufferedReader(
                        new InputStreamReader(
                        new DataInputStream(System.in)));
    while (true) {
    try {
        System.out.print("Klassenname oder ende eingeben: ");
        buf = in.readLine();
        if (buf.equals("ende")) {
          break;
        }
        Class c = Class.forName(buf);
        Object o = c.newInstance();
        ((HelloMeth)o).hello();
      } catch (IOException e) {
        System.out.println(e.toString());
      } catch (ClassNotFoundException e) {
        System.out.println("Klasse nicht gefunden");
      } catch (ClassCastException e) {
        System.out.println(e.toString());
      } catch (InstantiationException e) {
        System.out.println(e.toString());
      } catch (IllegalAccessException e) {
        System.out.println(e.toString());
      }
    }
  }
}