KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

11 public interface Product extends Identifiable {
12     double getPrice();
13
14     String JavaDoc getDescription();
15
16     Category getCategory();
17 }
18
Popular Tags