1 //$Id: Item.java,v 1.1 2004/08/22 01:20:07 oneovthafew Exp $2 package org.hibernate.test.interfaceproxy;3 4 /**5 * @author Gavin King6 */7 public interface Item {8 /**9 * @return Returns the id.10 */11 public Long getId();12 13 /**14 * @return Returns the name.15 */16 public String getName();17 18 /**19 * @param name The name to set.20 */21 public void setName(String name);22 }