class StoreSomethingObj
{
	Object something;

	Object get()
	{
		return something;
	}

	void set(Object some)
	{
		something = some;
	}
}