Advertisement
Leespiker

Untitled

Apr 29th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. Class<?> clientClass = classLoader.loadClass("client");
  2. Applet client = (Client) clientClass.newInstance();
  3. clientClass.getMethod("supplyApplet", new Class[] { Applet.class }).invoke(client, this);
  4. clientClass.getMethod("init").invoke(client);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement