KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > interfaceproxy > Item


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 King
6  */

7 public interface Item {
8     /**
9      * @return Returns the id.
10      */

11     public Long JavaDoc getId();
12
13     /**
14      * @return Returns the name.
15      */

16     public String JavaDoc getName();
17
18     /**
19      * @param name The name to set.
20      */

21     public void setName(String JavaDoc name);
22 }
Popular Tags