annotate src/main/java/christie/topology/node/CreateConnectionList.java @ 59:76b6da075ce0

fix run code
author akahori
date Tue, 28 Aug 2018 09:45:53 +0900
parents fd944876257b
children 37601b98f0da
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
59
76b6da075ce0 fix run code
akahori
parents: 49
diff changeset
8 import java.util.ArrayList;
49
fd944876257b add node and keepalive
akahori
parents:
diff changeset
9 import java.util.List;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
10
fd944876257b add node and keepalive
akahori
parents:
diff changeset
11 public class CreateConnectionList extends CodeGear {
59
76b6da075ce0 fix run code
akahori
parents: 49
diff changeset
12 @Peek
76b6da075ce0 fix run code
akahori
parents: 49
diff changeset
13 ArrayList<String> _CLIST;
49
fd944876257b add node and keepalive
akahori
parents:
diff changeset
14 @Take
fd944876257b add node and keepalive
akahori
parents:
diff changeset
15 String cMember;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
16
fd944876257b add node and keepalive
akahori
parents:
diff changeset
17 public CreateConnectionList() { }
fd944876257b add node and keepalive
akahori
parents:
diff changeset
18
fd944876257b add node and keepalive
akahori
parents:
diff changeset
19 @Override
fd944876257b add node and keepalive
akahori
parents:
diff changeset
20 protected void run(CodeGearManager cgm) {
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 }