1 /*
2 * Created on May 13, 2004
3 *
4 */
5 package org.neo.swarm.services.classloader;
6
7
8 /***
9 * Is loaded by the distributedclassloader
10 * @author navery
11 */
12 public class TestClass {
13 public int called = 0;
14 public void doStuff() {
15 called++;
16 System.out.println("doing stuff");
17 }
18 }