1 /*
2 * Created on Nov 15, 2003
3 *
4 * Copyright neotechnologies.org
5 */
6 package org.neo.swarm.util.serialize;
7
8 import java.io.Serializable;
9 import java.lang.reflect.Method;
10
11 //import org.neo.swarm.AppContext;
12
13 /***
14 * This object does.....
15 *
16 * @author neil.avery
17 */
18 public class SimpleObject implements Serializable {
19 String stuff = "mysimpleobject";
20 String boo = "blah";
21 transient Method method2 = null;
22 // transient String method = null;
23 public SimpleObject(String boo) throws Exception {
24 // method2 = null;//AppContext.class.getMethod("getComponentProxy", new Class[] { int.class, String.class });
25 // this.method = method2.getName();
26 this.boo = boo;
27 }
28 public void soSomeStuff(){
29
30 }
31 }