summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/lifecycle/instance/predefined/entitycreation/Aggregation.java
blob: 4abb0e6386f9018cb37f1cae13e6563e780b4b58 (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
26
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() {
        // TODO: create aggregation
        return new com.c2kernel.collection.AggregationInstance();
    }
}