edu.uci.ics.jung.io.graphml
Class EdgeMetadata

java.lang.Object
  extended by edu.uci.ics.jung.io.graphml.AbstractMetadata
      extended by edu.uci.ics.jung.io.graphml.EdgeMetadata
All Implemented Interfaces:
Metadata

public class EdgeMetadata
extends AbstractMetadata

Metadata structure for the 'edge' GraphML element.

Author:
Nathan Mittler - nathan.mittler@gmail.com
See Also:
"http://graphml.graphdrawing.org/specification.html"

Nested Class Summary
 
Nested classes/interfaces inherited from interface edu.uci.ics.jung.io.graphml.Metadata
Metadata.MetadataType
 
Constructor Summary
EdgeMetadata()
           
 
Method Summary
 String getDescription()
           
 Object getEdge()
           
 String getId()
           
 Metadata.MetadataType getMetadataType()
          Gets the metadata type of this object.
 String getSource()
           
 String getSourcePort()
           
 String getTarget()
           
 String getTargetPort()
           
 Boolean isDirected()
           
 void setDescription(String description)
           
 void setDirected(Boolean directed)
           
 void setEdge(Object edge)
           
 void setId(String id)
           
 void setSource(String source)
           
 void setSourcePort(String sourcePort)
           
 void setTarget(String target)
           
 void setTargetPort(String targetPort)
           
 
Methods inherited from class edu.uci.ics.jung.io.graphml.AbstractMetadata
addData, getProperties, getProperty, setProperty
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EdgeMetadata

public EdgeMetadata()
Method Detail

getId

public String getId()

setId

public void setId(String id)

isDirected

public Boolean isDirected()

setDirected

public void setDirected(Boolean directed)

getSource

public String getSource()

setSource

public void setSource(String source)

getTarget

public String getTarget()

setTarget

public void setTarget(String target)

getSourcePort

public String getSourcePort()

setSourcePort

public void setSourcePort(String sourcePort)

getTargetPort

public String getTargetPort()

setTargetPort

public void setTargetPort(String targetPort)

getDescription

public String getDescription()

setDescription

public void setDescription(String description)

getEdge

public Object getEdge()

setEdge

public void setEdge(Object edge)

getMetadataType

public Metadata.MetadataType getMetadataType()
Description copied from interface: Metadata
Gets the metadata type of this object.

Returns:
the metadata type


Copyright © 2009. All Rights Reserved.