All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.penglecode.common.serializer.protostuff.ObjectWrapper Maven / Gradle / Ivy

Go to download

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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy