Mercurial > hg > Database > Christie
annotate src/main/java/christie/topology/node/CreateConnectionList.java @ 89:2c22b23fa725
update refactor
author | akahori |
---|---|
date | Sat, 15 Sep 2018 10:34:04 +0900 |
parents | 37601b98f0da |
children | 2e2d761ea806 |
rev | line source |
---|---|
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 | |
8 import java.util.List; | |
9 | |
10 public class CreateConnectionList extends CodeGear { | |
59 | 11 @Peek |
89 | 12 List<String> _CLIST; |
49 | 13 @Take |
14 String cMember; | |
15 | |
16 public CreateConnectionList() { } | |
17 | |
18 @Override | |
19 protected void run(CodeGearManager cgm) { | |
68 | 20 |
49 | 21 _CLIST.add(cMember); |
22 } | |
23 | |
24 } |