KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > archive > collection > CollectionItem


1 /*
2  * Created on Jul 2, 2006
3  */

4 package com.openedit.archive.collection;
5
6 import com.openedit.store.Product;
7
8 public class CollectionItem
9 {
10     protected Product fieldProduct;
11
12     public Product getProduct()
13     {
14         return fieldProduct;
15     }
16
17     public void setProduct(Product inProduct)
18     {
19         fieldProduct = inProduct;
20     }
21     
22 }
23
Popular Tags