
public class Bar extends Foo implements Baz
{
	private String id;
	public String getId()
	{
		return id;
	}
	public void setId(String id)
	{
		this.id = id;
	}
	public String getSlot()
	{
		return slot;
	}
	public void setSlot(String slot)
	{
		this.slot = slot;
	}
	public static void main(String[] args)
	{
		Bar b = new Bar();
		b.setId("007");
		b.setSlot(global);
		System.out.println("id:   " + b.getId());
		System.out.println("slot: " + b.getSlot());
	}
}
