Uses of Interface
twaver.event.IHandler

Packages that use IHandler
twaver.alarm   
twaver.core.model   
twaver.event   
twaver.model   
 

Uses of IHandler in twaver.alarm
 

Classes in twaver.alarm that implement IHandler
 class Alarm
          告警对象,代表一条告警数据
 class AlarmBox
          告警容器,用于管理告警对象的数据容器
 

Uses of IHandler in twaver.core.model
 

Subinterfaces of IHandler in twaver.core.model
 interface IData
          数据接口,twaver内部使用
 interface IDataBox<T extends Data>
          数据容器接口,twaver内部使用
 interface IElement
          网元接口,twaver内部使用
 interface IElementBox
          网元容器接口,twaver内部使用
 interface IFollower
          跟随者接口,twaver内部使用
 interface IGroup
          分组接口,twaver内部使用
 interface IHashCollection<T extends Data>
          哈希数据容器接口,twaver内部使用
 interface IHost
          宿主接口,twaver内部使用
 interface ILayer
          图层接口,twaver内部使用
 interface ILayerBox
          图层容器接口,twaver内部使用
 interface INode
          节点接口,twaver内部使用
 interface ISelectionModel<T extends Data>
          选中模型接口,twaver内部使用
 

Uses of IHandler in twaver.event
 

Classes in twaver.event that implement IHandler
 class HandlerSupport<E extends Event>
          事件处理器实现类
 

Uses of IHandler in twaver.model
 

Subinterfaces of IHandler in twaver.model
 interface ISubnetwork
          子网接口,拓扑图中可以双击进入某个子网,显示该子网内的网元信息
 

Classes in twaver.model that implement IHandler
 class Data
          数据元素
 class DataBox<T extends Data>
          数据容器
 class Element
          网元数据类型
 class ElementBox
          网元管理容器,用于网元数据的管理和事件分派
 class Group
          分组类型,继承于Node类型,可以展开合并,合并状态时与普通节点呈现一致,展开状态时,分组内的孩子节点可见
 class HashCollection<T extends Data>
          数据容器,继承于 HashList,增加数据元素事件监听管理,以及过滤功能,是数据管理容器的基类
 class Layer
          图层元素
 class LayerBox
          图层管理容器,用于管理网元的图层数据
 class Link
          连线类型,包含两个节点属性:起始节点Link.from和结束节点 Link.to 起始节点或者结束节点未设置时,称该连线无效 Link.isInvalid() 起始节点和结束节点相同时,称为自环 Link.isLooped() 如果起始或者结束节点放在分组中,分组合并状态时,外观上分组与连线相连, 这时此分组为代理节点Link.getFromAgent()Link.getToAgent() 此外还实现了IShape接口,可以添加中间路径片段Link.addPathSegement(PathSegment) 对应的默认UI类为LinkUI
 class LinkSubnetwork
          连线子网,外观与连线一致,具备子网功能
 class Node
          节点类型,可以设置图片,添加跟随者 默认对应的UI类是 NodeUI
 class SelectionModel<T extends Data>
          选中模型,用于元素的选中状态管理,可以选中或者取消元素的选中状态
 class ShapeNode
          多边形节点,继承于Node,实现了IShape接口,可以添加路径片段,通过添加路径片段,围成一个多边形, 可以填充颜色或者渐变,如果不填充,则表现为线条样式 默认UI类为ShapeNodeUI
 class ShapeSubnetwork
          子网多边形,继承于ShapeNode,实现了子网接口
 class Subnetwork
          子网节点,继承于Node,实现了子网接口