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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
49
fd944876257b add node and keepalive
akahori
parents:
diff changeset
1 package christie.topology.node;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
2
59
76b6da075ce0 fix run code
akahori
parents: 49
diff changeset
3 import christie.annotation.Peek;
49
fd944876257b add node and keepalive
akahori
parents:
diff changeset
4 import christie.annotation.Take;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
5 import christie.codegear.CodeGear;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
6 import christie.codegear.CodeGearManager;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
7
fd944876257b add node and keepalive
akahori
parents:
diff changeset
8 import java.util.List;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
9
fd944876257b add node and keepalive
akahori
parents:
diff changeset
10 public class CreateConnectionList extends CodeGear {
59
76b6da075ce0 fix run code
akahori
parents: 49
diff changeset
11 @Peek
89
2c22b23fa725 update refactor
akahori
parents: 68
diff changeset
12 List<String> _CLIST;
49
fd944876257b add node and keepalive
akahori
parents:
diff changeset
13 @Take
fd944876257b add node and keepalive
akahori
parents:
diff changeset
14 String cMember;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
15
fd944876257b add node and keepalive
akahori
parents:
diff changeset
16 public CreateConnectionList() { }
fd944876257b add node and keepalive
akahori
parents:
diff changeset
17
fd944876257b add node and keepalive
akahori
parents:
diff changeset
18 @Override
fd944876257b add node and keepalive
akahori
parents:
diff changeset
19 protected void run(CodeGearManager cgm) {
68
37601b98f0da update TopologyNode
akahori
parents: 59
diff changeset
20
49
fd944876257b add node and keepalive
akahori
parents:
diff changeset
21 _CLIST.add(cMember);
fd944876257b add node and keepalive
akahori
parents:
diff changeset
22 }
fd944876257b add node and keepalive
akahori
parents:
diff changeset
23
fd944876257b add node and keepalive
akahori
parents:
diff changeset
24 }