Search this API

y.io.graphml.graph2d
Class GenericEdgeRealizerSerializer

java.lang.Object
  extended by y.io.graphml.graph2d.AbstractEdgeRealizerSerializer
      extended by y.io.graphml.graph2d.GenericEdgeRealizerSerializer
All Implemented Interfaces:
EdgeRealizerSerializer

public class GenericEdgeRealizerSerializer
extends AbstractEdgeRealizerSerializer

Serializer for instances of GenericEdgeRealizer.

 

Nested Class Summary
static interface GenericEdgeRealizerSerializer.ConfigurationFactory
          Interface for dynamic creation and registration of configurations for GenericEdgeRealizer.
 
Constructor Summary
GenericEdgeRealizerSerializer()
           
 
Method Summary
 java.lang.String getName()
          Returns the name of the XML element tag which denotes this type of realizer.
 java.lang.String getNamespaceURI()
          Returns the target namespace of the toplevel element
protected  ObjectStringConverter getObjectStringConverter()
          Gets the ObjectStringConverter that will be used by this instance to convert the GenericNodeRealizer.getUserData() and GenericNodeRealizer.getStyleProperties() style properties to strings for serialization.
 java.lang.Class getRealizerClass()
          Returns the class of which the realizer is an instance of.
 void parse(EdgeRealizer realizer, org.w3c.dom.Node domNode, GraphMLParseContext context)
          Parses the properties from an instance of EdgeRealizer.
protected  void parseStyleProperties(GenericEdgeRealizer ger, org.w3c.dom.Node domNode, GraphMLParseContext context)
          Parses the style properties section of this realizer and assigns the user data object.
protected  void parseUserData(GenericEdgeRealizer gr, org.w3c.dom.Node domNode, GraphMLParseContext context)
          Parses the user data section of this realizer and assigns the user data object.
 void write(EdgeRealizer realizer, XmlWriter ipw, GraphMLWriteContext context)
          Writes the realizer element's content.
 void writeAttributes(EdgeRealizer realizer, XmlWriter writer, GraphMLWriteContext context)
          Writes the attributes of an EdgeRealizer element.
protected  void writeStyleProperties(GenericEdgeRealizer gnr, XmlWriter writer, GraphMLWriteContext context)
          Writes the style properties section of this realizer and serializes the properties
protected  void writeUserData(GenericEdgeRealizer ger, XmlWriter writer, GraphMLWriteContext context)
          Writes the user data section of this realizer and assigns the user data object.
 
Methods inherited from class y.io.graphml.graph2d.AbstractEdgeRealizerSerializer
canHandle, canHandle, createRealizerInstance, getNamespacePrefix, parseLabel, parsePort, writeEdgeLabel, writePort
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GenericEdgeRealizerSerializer

public GenericEdgeRealizerSerializer()
Method Detail

getName

public java.lang.String getName()
Description copied from interface: EdgeRealizerSerializer
Returns the name of the XML element tag which denotes this type of realizer.

Returns:
The name of the XML element

getNamespaceURI

public java.lang.String getNamespaceURI()
Description copied from interface: EdgeRealizerSerializer
Returns the target namespace of the toplevel element

Returns:
the target namespace of the toplevel element

getRealizerClass

public java.lang.Class getRealizerClass()
Description copied from interface: EdgeRealizerSerializer
Returns the class of which the realizer is an instance of.

Returns:
The target class of the realizer

writeAttributes

public void writeAttributes(EdgeRealizer realizer,
                            XmlWriter writer,
                            GraphMLWriteContext context)
Description copied from interface: EdgeRealizerSerializer
Writes the attributes of an EdgeRealizer element.

Specified by:
writeAttributes in interface EdgeRealizerSerializer
Overrides:
writeAttributes in class AbstractEdgeRealizerSerializer
Parameters:
realizer - The Realizer to write.
writer - The XmlWriter for the serialization.
context - The current write context.

write

public void write(EdgeRealizer realizer,
                  XmlWriter ipw,
                  GraphMLWriteContext context)
           throws GraphMLWriteException
Description copied from interface: EdgeRealizerSerializer
Writes the realizer element's content.

Specified by:
write in interface EdgeRealizerSerializer
Overrides:
write in class AbstractEdgeRealizerSerializer
Parameters:
realizer - The Realizer to write.
ipw - The XmlWriter for the serialization.
context - The current write context.
Throws:
GraphMLWriteException

writeUserData

protected void writeUserData(GenericEdgeRealizer ger,
                             XmlWriter writer,
                             GraphMLWriteContext context)
                      throws GraphMLWriteException
Writes the user data section of this realizer and assigns the user data object.

Throws:
GraphMLWriteException

writeStyleProperties

protected void writeStyleProperties(GenericEdgeRealizer gnr,
                                    XmlWriter writer,
                                    GraphMLWriteContext context)
                             throws GraphMLWriteException
Writes the style properties section of this realizer and serializes the properties

Throws:
GraphMLWriteException
See Also:
getObjectStringConverter()

getObjectStringConverter

protected ObjectStringConverter getObjectStringConverter()
Gets the ObjectStringConverter that will be used by this instance to convert the GenericNodeRealizer.getUserData() and GenericNodeRealizer.getStyleProperties() style properties to strings for serialization.

Returns:
The value of ObjectStringConversion.getInstance().

parse

public void parse(EdgeRealizer realizer,
                  org.w3c.dom.Node domNode,
                  GraphMLParseContext context)
           throws GraphMLParseException
Description copied from class: AbstractEdgeRealizerSerializer
Parses the properties from an instance of EdgeRealizer.

Specified by:
parse in interface EdgeRealizerSerializer
Overrides:
parse in class AbstractEdgeRealizerSerializer
Parameters:
realizer - An existing EdgeRealizer instance which is configured.
domNode - The XML node containing the realizer data.
context - The current parse context.
Throws:
GraphMLParseException

parseStyleProperties

protected void parseStyleProperties(GenericEdgeRealizer ger,
                                    org.w3c.dom.Node domNode,
                                    GraphMLParseContext context)
                             throws GraphMLParseException
Parses the style properties section of this realizer and assigns the user data object.

Throws:
GraphMLParseException

parseUserData

protected void parseUserData(GenericEdgeRealizer gr,
                             org.w3c.dom.Node domNode,
                             GraphMLParseContext context)
                      throws GraphMLParseException
Parses the user data section of this realizer and assigns the user data object.

Throws:
GraphMLParseException

© Copyright 2000-2022,
yWorks GmbH.
All rights reserved.