Uses of Interface
helix.graph.model.Registry

Packages that use Registry
helix.graph.algo.c3part   
helix.graph.model   
helix.graph.model.impl   
helix.graph.model.impl.memory   
 

Uses of Registry in helix.graph.algo.c3part
 

Methods in helix.graph.algo.c3part with parameters of type Registry
static ColorOptimizer C3PartUtil.getOptimizer(Registry r)
          get the color optimizer attached to the registry
static void C3PartUtil.setOptimizer(Registry r, ColorOptimizer optimizer)
          set the color optimizer into the registry
 

Uses of Registry in helix.graph.model
 

Subinterfaces of Registry in helix.graph.model
 interface Edge
           
 interface Graph
           
 interface GraphElement
          a graph element : Vertex or Edge
 interface Vertex
          a graph vertex
 

Methods in helix.graph.model that return Registry
 Registry Registry.registry()
           
 

Methods in helix.graph.model with parameters of type Registry
 void Registry.copy(Registry source)
           
 

Uses of Registry in helix.graph.model.impl
 

Classes in helix.graph.model.impl that implement Registry
 class AbstractGraph
           
 class AbstractRegistry
           
 class DelegateRegistry
           
 

Methods in helix.graph.model.impl that return Registry
abstract  Registry DelegateRegistry.registry()
           
 Registry AbstractRegistry.registry()
           
 

Methods in helix.graph.model.impl with parameters of type Registry
 void AbstractRegistry.copy(Registry src)
           
static RColorSet RColorSet.getColors(Registry r)
          same as getColors(r, Registry.Colors)
static RColorSet RColorSet.getColors(Registry r, String key)
          Lookup the RColorSet associated to key in registry and create an empty RColorSet if it does not exist.
static RVertexList RVertexList.getVertexList(Registry r, String key)
          Lookup the RVertexList associated to key in registry and create an empty RVertexList if it does not exist.
static RVertexSet RVertexSet.getVertexSet(Registry r, String key)
          Lookup the RVertexSet associated to key in registry and create an empty RVertexSet if it does not exist.
static boolean RColorSet.hasColor(Registry r, int i)
          same as hasColor(r, Registry.Colors)
static boolean RColorSet.hasColor(Registry r, String key, int i)
          tells if registry r has a RcolorSet on key and if this RColorSet has color i
static boolean RColorSet.hasColors(Registry r)
          same as hasColors(r, Registry.Colors)
static boolean RColorSet.hasColors(Registry r, String key)
          tells if registry r has a RcolorSet on key and if this RcolorSet is not empty
static int RColorSet.nbColors(Registry r)
          same as nbColors(r, Registry.Colors)
static int RColorSet.nbColors(Registry r, String key)
          get the number of colors in RColorSet associated o key in registry r.
 

Uses of Registry in helix.graph.model.impl.memory
 

Classes in helix.graph.model.impl.memory that implement Registry
 class MemEdge
           
 class MemGraph
           
 class MemRegistry
          In-Memory Registry for Graph, Vertex, Edge
 class MemVertex
           
 

Methods in helix.graph.model.impl.memory that return Registry
 Registry MemGraph.registry()