public class Simple extends Item
{
	Simple(String name, Weight weight)
	{this.name=name;this.weight=weight;}

	String name;
	public Weight weight; //must be public
}