com.penglecode.common.serializer.protostuff.ObjectWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
commons is a little java tool to make your development easier in your work.
The newest version!
package com.penglecode.common.serializer.protostuff;
public class ObjectWrapper {
private Object object;
public Object getObject() {
return object;
}
public void setObject(Object object) {
this.object = object;
}
public ObjectWrapper() {
super();
}
public ObjectWrapper(Object object) {
super();
this.object = object;
}
}