blob: 87baa1d5709991d1bb301b88c29004d759dcb031 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package com.c2kernel.lifecycle.instance.predefined.entitycreation;
public class AggregationMember implements java.io.Serializable {
public int slotNo;
public String itemDescriptionPath;
public String itemPath;
public Geometry geometry;
public AggregationMember() {
super();
}
public AggregationMember(int slotNo, String itemDescPath, String itemPath, Geometry geometry) {
this.slotNo = slotNo;
this.itemDescriptionPath = itemDescPath;
this.itemPath = itemPath;
this.geometry = geometry;
}
}
|