01: package org.apache.ojb.broker;
02:
03: /** represents a product group containing a set of Articles.
04: * @see Article
05: */
06: public class ProductGroupWithCollectionProxy extends
07: AbstractProductGroup {
08:
09: public ProductGroupWithCollectionProxy() {
10: super ();
11: }
12:
13: public ProductGroupWithCollectionProxy(Integer pGroupId,
14: String pGroupName, String pDescription) {
15: super(pGroupId, pGroupName, pDescription);
16: }
17:
18: }
|