Uses of Class
bass.visualisation.graph.BassNode

Packages that use BassNode
bass.visualisation.graph   
bass.visualisation.view   
 

Uses of BassNode in bass.visualisation.graph
 

Subclasses of BassNode in bass.visualisation.graph
 class BassCluster
          A Cluster should be a group of nodes with their edges to visualize i.e. the genre rock.
 

Fields in bass.visualisation.graph declared as BassNode
private  BassNode BassEdge.end
           
private  BassNode BassEdge.start
           
 

Methods in bass.visualisation.graph that return BassNode
 BassNode BassEdge.getEnd()
           
 BassNode BassNodeList.getNode(int index)
           
 BassNode BassEdge.getStart()
           
 

Methods in bass.visualisation.graph with parameters of type BassNode
 void BassNodeList.add(BassNode n)
          Adds a BassNode to this list.
 void BassCluster.addNode(BassNode node)
           
 boolean BassNodeList.contains(BassNode n)
          Checks this list for the element
 boolean BassCluster.isAncestor(BassNode node)
          Check if the specified node is a child of this cluster or one of this cluster's child clusters etc
 boolean BassNodeList.isInList(BassNode n)
          Checks if this list contains the param element.
 void BassNodeList.remove(BassNode n)
           
 void BassEdge.setEnd(BassNode newEnd)
          Sets the endNode to an 'empty' bassedge object
 void BassEdge.setStart(BassNode newStart)
          Sets the startNode to an 'empty' bassedge object
 

Constructors in bass.visualisation.graph with parameters of type BassNode
BassEdge(BassNode start, BassNode end)
          Sets up an edge with the start node and the end node.
 

Uses of BassNode in bass.visualisation.view
 

Methods in bass.visualisation.view with parameters of type BassNode
private static void BandView.showNames(BassNode node, javax.media.j3d.BranchGroup theBranch)