KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > webwork > example > ajax > catalog > Identifiable


1 /*
2  * Copyright (c) 2005 Your Corporation. All Rights Reserved.
3  */

4 package com.opensymphony.webwork.example.ajax.catalog;
5
6 /**
7  * Identifiable
8  *
9  * @author Jason Carreira <jcarreira@eplus.com>
10  */

11 public interface Identifiable {
12     int getId();
13
14     String JavaDoc getName();
15 }
16
Popular Tags