blob: 8260b7764df9d4d1574ee73672fa151e07a82754 (
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
27
28
29
|
package com.c2kernel.entity.imports;
import com.c2kernel.utils.CastorHashMap;
import com.c2kernel.utils.KeyValuePair;
public class ImportDependencyMember {
public String itemPath;
public CastorHashMap props = new CastorHashMap();
public ImportDependencyMember() {
super();
}
public ImportDependencyMember(String itemPath) {
this.itemPath = itemPath;
}
public KeyValuePair[] getKeyValuePairs() {
return props.getKeyValuePairs();
}
public void setKeyValuePairs(KeyValuePair[] pairs) {
props.setKeyValuePairs(pairs);
}
}
|