blob: 367722059cd007a8386ccb477bf2ce44aecbacfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
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();
}
}
|