Uses of Class
twaver.model.HashList

Packages that use HashList
twaver.alarm   
twaver.core.model   
twaver.model   
 

Uses of HashList in twaver.alarm
 

Subclasses of HashList in twaver.alarm
 class AlarmBox
          告警容器,用于管理告警对象的数据容器
 

Uses of HashList in twaver.core.model
 

Methods in twaver.core.model that return HashList
 HashList<Node> IHost.getFollowers()
           
 HashList<Link> INode.getFromLinks()
           
 HashList<Link> INode.getLinks()
           
 HashList<Link> INode.getLoopedLinks()
           
 HashList<Link> INode.getToLinks()
           
 

Uses of HashList in twaver.model
 

Subclasses of HashList in twaver.model
 class DataBox<T extends Data>
          数据容器
 class ElementBox
          网元管理容器,用于网元数据的管理和事件分派
 class HashCollection<T extends Data>
          数据容器,继承于 HashList,增加数据元素事件监听管理,以及过滤功能,是数据管理容器的基类
 class LayerBox
          图层管理容器,用于管理网元的图层数据
 class SelectionModel<T extends Data>
          选中模型,用于元素的选中状态管理,可以选中或者取消元素的选中状态
 

Fields in twaver.model declared as HashList
protected  HashList<T> DataBox.roots
          根层元素集合
 

Methods in twaver.model that return HashList
 HashList<Link> Node.getAgentLinks()
          所有的代理连线
 HashList<Node> Node.getFollowers()
          获取所有的跟随者,结果可能为null
 HashList<Node> Node.getFollowers(boolean create)
          获取所有的跟随者
 HashList<Link> Node.getFromAgentLinks()
          获取起始端所有的代理连线
 HashList<Link> Node.getFromLinks()
          获取所有起始端连线
 HashList<Link> Node.getLinks()
          获取该节点上所有的连线
 HashList<Link> Node.getLoopedLinks()
          获取节点左右的自环
 HashList<T> DataBox.getRoots()
          根层元素原始集合
 HashList<Link> Node.getToAgentLinks()
          获取结束端所有代理连线
 HashList<Link> Node.getToLinks()
          获取所有结束端连线
 

Methods in twaver.model with parameters of type HashList
 void HashList.add(HashList<T> datas)