Packagecom.yworks.io.graphml.reader
Classpublic class ReadEdgeLayoutHandler
InheritanceReadEdgeLayoutHandler Inheritance AbstractInputHandler

The main edge data handler responsible for parsing edges in a graphml file.

A shared instance can be retrieved using instance.



Public Properties
 PropertyDefined by
  instance : ReadEdgeLayoutHandler
[static][read-only] The shared instance of this input handler.
ReadEdgeLayoutHandler
Protected Properties
 PropertyDefined by
  styleDeserializers : Object
[static] Maps the element names of elements that can be parsed by registered style serializers to the style serializers
ReadEdgeLayoutHandler
Public Methods
 MethodDefined by
  
acceptKey(keyElement:XML, scopeType:String):Boolean
This method defines whether a specific key/data pair is handled by the input handler.
ReadEdgeLayoutHandler
 Inherited
applyDefault(context:GraphMLParseContext, defaultElement:XML, value:Object):void
This method is invoked when no data tag is defined, and the default value should be applied.
AbstractInputHandler
 Inherited
parseData(context:GraphMLParseContext, defaultValue:Boolean, dataElement:XML):void
Forwards to parseItemData This method is invoked each time a data element with matching key is processed.
AbstractInputHandler
 Inherited
parseDefaultData(context:GraphMLParseContext, keyElement:XML):Object
This method is invoked when the default value of the key element for a data element is parsed.
AbstractInputHandler
Protected Methods
 MethodDefined by
  
parseItemData(context:GraphMLParseContext, graph:IGraph, item:Object, defaultMode:Boolean, dataElement:XML):void
Parse the element for the given item.
ReadEdgeLayoutHandler
Public Constants
 ConstantDefined by
  ATTR_NAME : String = "geometry"
[static] The attr.name for edges defined in the <key> element for the edge <data> element.
ReadEdgeLayoutHandler
Property detail
instanceproperty
instance:ReadEdgeLayoutHandler  [read-only]

The shared instance of this input handler.

Implementation
    public static function get instance():ReadEdgeLayoutHandler
styleDeserializersproperty 
protected static var styleDeserializers:Object

Maps the element names of elements that can be parsed by registered style serializers to the style serializers

Method detail
acceptKey()method
public override function acceptKey(keyElement:XML, scopeType:String):Boolean

This method defines whether a specific key/data pair is handled by the input handler. When it returns true, each occurence of data elements which match the id of the key element are forwarded to the input handler.

Parameters
keyElement:XML — the key element
 
scopeType:String — the scope type for which the key is defined.

One of

  • GraphMLConstants.SCOPE_ALL
  • GraphMLConstants.SCOPE_GRAPH
  • GraphMLConstants.SCOPE_NODE
  • GraphMLConstants.SCOPE_EDGE
  • GraphMLConstants.SCOPE_PORT

Returns
Booleantrue, if this hanlder can handle the data elements asked for.
parseItemData()method 
protected override function parseItemData(context:GraphMLParseContext, graph:IGraph, item:Object, defaultMode:Boolean, dataElement:XML):void

Parse the element for the given item.

Parameters
context:GraphMLParseContext — The parse context
 
graph:IGraph — The graph to work on
 
item:Object — The item.
 
defaultMode:Booleantrue when the default value, which is included in the key element, is processed, false otherwise.
 
dataElement:XML — The data element of the graphml file.
Constant detail
ATTR_NAMEconstant
public static const ATTR_NAME:String = "geometry"

The attr.name for edges defined in the <key> element for the edge <data> element.