1 package nmp.util;
2
3 public class ObjectHolder
4 {
5 private Object obj;
6
7 public ObjectHolder( Object obj) {
8 this.obj = obj;
9 }
10
11 public Object getObject() {
12 return obj;
13 }
14
15 public void setObject( Object obj) {
16 this.obj = obj;
17 }
18 }
This page was automatically generated by Maven