interface ISame{
	// is this object the same as the given object
	public boolean same(Object obj);
}
