Uses of Class
de.unihalle.informatik.MiToBo.core.datatypes.MTBGraphNode

Packages that use MTBGraphNode
de.unihalle.informatik.MiToBo.core.datatypes Provides basic datatypes for MiToBo. 
 

Uses of MTBGraphNode in de.unihalle.informatik.MiToBo.core.datatypes
 

Subclasses of MTBGraphNode in de.unihalle.informatik.MiToBo.core.datatypes
 class MTBNeuriteSkelGraphNode<T>
          Class implements a MTBSkeletonGraphNode, which is a type of the MTBGraphNode.
 

Fields in de.unihalle.informatik.MiToBo.core.datatypes declared as MTBGraphNode
protected  MTBGraphNode<?> MTBGraphEdge.src
          Source node of the MTBGraphEdge.
protected  MTBGraphNode<?> MTBGraphEdge.tgt
          Target node of the MTBGraphEdge.
 

Fields in de.unihalle.informatik.MiToBo.core.datatypes with type parameters of type MTBGraphNode
protected  Vector<MTBGraphNode<?>> MTBGraph.nodes
          Vector of included graph nodes.
 

Methods in de.unihalle.informatik.MiToBo.core.datatypes that return MTBGraphNode
 MTBGraphNode<?> MTBGraphEdge.getSrcNode()
          Get source node of the MTBGraphEdge.
 MTBGraphNode<?> MTBGraphEdge.getTgtNode()
          Get target node of the MTBGraphEdge.
 

Methods in de.unihalle.informatik.MiToBo.core.datatypes that return types with arguments of type MTBGraphNode
 Vector<MTBGraphNode<T>> MTBGraphNode.getNeighbors()
          Get all neighbors of the current node.
 Vector<MTBGraphNode<?>> MTBGraph.getNodes()
          Get all nodes of the MTBGraph.
 

Methods in de.unihalle.informatik.MiToBo.core.datatypes with parameters of type MTBGraphNode
 void MTBGraph.addNode(MTBGraphNode<?> node)
          Add a node to MTBGraph.
 boolean MTBGraphEdge.nodeIsSrc(MTBGraphNode<?> node)
           
 boolean MTBGraphEdge.nodeIsTgt(MTBGraphNode<?> node)
           
 void MTBGraph.removeNode(MTBGraphNode<?> node)
          Remove the specified node from the graph as well as the edges connected to it.
protected  void MTBGraphEdge.setSrcNode(MTBGraphNode<?> node)
          Set source node of the MTBGraphEdge.
protected  void MTBGraphEdge.setTgtNode(MTBGraphNode<?> node)
          Set target node of the MTBGraphEdge.
 

Constructors in de.unihalle.informatik.MiToBo.core.datatypes with parameters of type MTBGraphNode
MTBGraphEdge(MTBGraphNode<?> src, MTBGraphNode<?> tgt, Vector<?> edgeData)
          Constructor to create a new MTBGraphEdge.
MTBGraphEdge(MTBGraphNode<?> src, MTBGraphNode<?> tgt, Vector<?> edgeData)
          Constructor to create a new MTBGraphEdge.
MTBGraphEdge(MTBGraphNode<?> src, MTBGraphNode<?> tgt, Vector<?> edgeData, double cost)
          Constructor to create a new MTBGraphEdge.
MTBGraphEdge(MTBGraphNode<?> src, MTBGraphNode<?> tgt, Vector<?> edgeData, double cost)
          Constructor to create a new MTBGraphEdge.
 

Constructor parameters in de.unihalle.informatik.MiToBo.core.datatypes with type arguments of type MTBGraphNode
MTBGraph(Vector<MTBGraphNode<?>> nodes, Vector<MTBGraphEdge> edges, boolean directed)
          Constructor to create an undirected or directed MTBGraph with the given nodes and edges.
 



Copyright © 2010–2015 Martin Luther University Halle-Wittenberg. All rights reserved.