package com.c2kernel.lifecycle.instance.predefined.entitycreation; import java.util.ArrayList; public class Aggregation implements java.io.Serializable { public boolean isDescription; public ArrayList aggregationMemberList; public String name; public Aggregation() { super(); aggregationMemberList = new ArrayList(); } public Aggregation(String name, boolean isDescription) { this(); this.name = name; this.isDescription = isDescription; } public com.c2kernel.collection.Aggregation create() { return new com.c2kernel.collection.AggregationInstance(); } }