Mercurial > hg > Database > Christie
view src/main/java/christie/topology/node/CreateConnectionList.java @ 195:a0be7c83fff8
add connectionList
author | akahori |
---|---|
date | Sat, 09 Mar 2019 10:19:03 +0900 |
parents | |
children |
line wrap: on
line source
package christie.topology.node; import christie.annotation.Take; import christie.codegear.CodeGear; import christie.codegear.CodeGearManager; import christie.topology.TopologyDataGear; class CreateConnectionList extends CodeGear { @Take String cMember; @Take TopologyDataGear topoDG; @Override protected void run(CodeGearManager cgm) { topoDG.addConnection(cMember); getLocalDGM().put("topoDG", topoDG); } }