KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ojb > broker > ProductGroupWithCollectionProxy


1 package org.apache.ojb.broker;
2
3
4 /** represents a product group containing a set of Articles.
5  * @see Article
6  */

7 public class ProductGroupWithCollectionProxy extends AbstractProductGroup
8 {
9
10     public ProductGroupWithCollectionProxy()
11     {
12         super();
13     }
14
15     public ProductGroupWithCollectionProxy(Integer JavaDoc pGroupId, String JavaDoc pGroupName, String JavaDoc pDescription)
16     {
17         super (pGroupId, pGroupName, pDescription);
18     }
19
20 }
21
Popular Tags