49
|
1 package christie.topology.node;
|
|
2
|
59
|
3 import christie.annotation.Peek;
|
49
|
4 import christie.annotation.Take;
|
|
5 import christie.codegear.CodeGear;
|
|
6 import christie.codegear.CodeGearManager;
|
|
7
|
59
|
8 import java.util.ArrayList;
|
49
|
9 import java.util.List;
|
|
10
|
|
11 public class CreateConnectionList extends CodeGear {
|
59
|
12 @Peek
|
|
13 ArrayList<String> _CLIST;
|
49
|
14 @Take
|
|
15 String cMember;
|
|
16
|
|
17 public CreateConnectionList() { }
|
|
18
|
|
19 @Override
|
|
20 protected void run(CodeGearManager cgm) {
|
|
21 _CLIST.add(cMember);
|
|
22 }
|
|
23
|
|
24 }
|