org.apache.maven.diagrams.graph_api
Interface GraphMetadata


public interface GraphMetadata

Interface for object providing basic (general) informations about the graph

Author:
Piotr Tabor

Method Summary
 java.util.List<java.lang.String> getEdgePropertiesNames()
          List of edge's properties (edges are JavaBeans) so it should be list of possible properties names in the graph's edge implementation
 java.util.List<java.lang.String> getNodePropertiesNames()
          List of node's properties (nodes are JavaBeans) so it should be list of possible properties names in the graph's node implementation
 boolean isDirected()
          Return's if the edges in the graph are directed
 

Method Detail

isDirected

boolean isDirected()
Return's if the edges in the graph are directed

Returns:
information if edges in the graph are directed

getNodePropertiesNames

java.util.List<java.lang.String> getNodePropertiesNames()
List of node's properties (nodes are JavaBeans) so it should be list of possible properties names in the graph's node implementation

Returns:

getEdgePropertiesNames

java.util.List<java.lang.String> getEdgePropertiesNames()
List of edge's properties (edges are JavaBeans) so it should be list of possible properties names in the graph's edge implementation

Returns:


Copyright © 2002-2011 Apache Software Foundation. All Rights Reserved.