1 package org.apache.ojb.broker;2 3 4 /** represents a product group containing a set of Articles.5 * @see Article6 */7 public class ProductGroupWithCollectionProxy extends AbstractProductGroup8 {9 10 public ProductGroupWithCollectionProxy()11 {12 super();13 }14 15 public ProductGroupWithCollectionProxy(Integer pGroupId, String pGroupName, String pDescription)16 {17 super (pGroupId, pGroupName, pDescription);18 }19 20 }21