Uses of Interface
twaver.model.Identifiable

Packages that use Identifiable
twaver.alarm   
twaver.core.model   
twaver.model   
twaver.network   
 

Uses of Identifiable in twaver.alarm
 

Classes in twaver.alarm that implement Identifiable
 class Alarm
          告警对象,代表一条告警数据
 

Uses of Identifiable in twaver.core.model
 

Classes in twaver.core.model with type parameters of type Identifiable
 interface IHashList<T extends Identifiable>
          哈希集合接口,twaver内部使用
 

Subinterfaces of Identifiable in twaver.core.model
 interface IData
          数据接口,twaver内部使用
 interface IElement
          网元接口,twaver内部使用
 interface IFollower
          跟随者接口,twaver内部使用
 interface IGroup
          分组接口,twaver内部使用
 interface IHost
          宿主接口,twaver内部使用
 interface ILayer
          图层接口,twaver内部使用
 interface INode
          节点接口,twaver内部使用
 

Uses of Identifiable in twaver.model
 

Classes in twaver.model with type parameters of type Identifiable
 class HashList<T extends Identifiable>
          兼具ListMap功能的数据集合,是twaver数据容器的基础,twaver内部使用
 

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

Classes in twaver.model that implement Identifiable
 class Data
          数据元素
 class Element
          网元数据类型
 class Group
          分组类型,继承于Node类型,可以展开合并,合并状态时与普通节点呈现一致,展开状态时,分组内的孩子节点可见
 class Layer
          图层元素
 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 ShapeNode
          多边形节点,继承于Node,实现了IShape接口,可以添加路径片段,通过添加路径片段,围成一个多边形, 可以填充颜色或者渐变,如果不填充,则表现为线条样式 默认UI类为ShapeNodeUI
 class ShapeSubnetwork
          子网多边形,继承于ShapeNode,实现了子网接口
 class Subnetwork
          子网节点,继承于Node,实现了子网接口
 

Uses of Identifiable in twaver.network
 

Classes in twaver.network that implement Identifiable
 class ElementUI<T extends Element>
          网元呈现类,用于网元在拓扑图中的呈现,由一个主体和多个孩子UI元素构成
 class GroupUI
           
 class LinkUI
          连线UI元素,用于绘制连线,主体使用图形元素(ShapeUI)
 class NodeUI
          节点图形元素,用于绘制网元节点
 class ShapeNodeUI
          用于呈现ShapeNode网元类型,可以填充呈现多边形,或者不填充呈现线条样式