| Package | com.yworks.io.graphml.reader |
| Interface | public interface IDeserializer |
| Implementors | AbstractDeserializer |
| Property | Defined By | ||
|---|---|---|---|
| elementName : String [read-only]
The local tag name that this Deserializer can claim to handle
| IDeserializer | ||
| xmlNamespace : Namespace [read-only]
The XmlNamespace that this Deserializer can claim to handle
| IDeserializer | ||
| Method | Defined By | ||
|---|---|---|---|
canHandle(context:GraphMLParseContext, element:XML):Boolean
Return whether a deserializer can handle a specific xml element
| IDeserializer | ||
deserialize(context:GraphMLParseContext, element:XML):Object
Create a new instance from the
xml element
| IDeserializer | ||
| elementName | property |
elementName:String [read-only] The local tag name that this Deserializer can claim to handle
public function get elementName():String| xmlNamespace | property |
xmlNamespace:Namespace [read-only] The XmlNamespace that this Deserializer can claim to handle
public function get xmlNamespace():Namespace| canHandle | () | method |
public function canHandle(context:GraphMLParseContext, element:XML):BooleanReturn whether a deserializer can handle a specific xml element
Parameters
context:GraphMLParseContext — The current parse context
| |
element:XML — The xml element in question
|
Boolean — true iff this deserializer can handle the xml element
|
| deserialize | () | method |
public function deserialize(context:GraphMLParseContext, element:XML):ObjectCreate a new instance from the xml element
Parameters
context:GraphMLParseContext — The current parse context
| |
element:XML — The current xml element
|
Object — A new instance
|