Package com.google.inject.grapher
Class AbstractInjectorGrapher.GrapherParameters
- java.lang.Object
-
- com.google.inject.grapher.AbstractInjectorGrapher.GrapherParameters
-
- Enclosing class:
- AbstractInjectorGrapher
public static final class AbstractInjectorGrapher.GrapherParameters extends Object
Parameters used to override default settings of the grapher.- Since:
- 4.0
-
-
Constructor Summary
Constructors Constructor Description GrapherParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AliasCreator
getAliasCreator()
EdgeCreator
getEdgeCreator()
NodeCreator
getNodeCreator()
RootKeySetCreator
getRootKeySetCreator()
AbstractInjectorGrapher.GrapherParameters
setAliasCreator(AliasCreator aliasCreator)
AbstractInjectorGrapher.GrapherParameters
setEdgeCreator(EdgeCreator edgeCreator)
AbstractInjectorGrapher.GrapherParameters
setNodeCreator(NodeCreator nodeCreator)
AbstractInjectorGrapher.GrapherParameters
setRootKeySetCreator(RootKeySetCreator rootKeySetCreator)
-
-
-
Method Detail
-
getRootKeySetCreator
public RootKeySetCreator getRootKeySetCreator()
-
setRootKeySetCreator
public AbstractInjectorGrapher.GrapherParameters setRootKeySetCreator(RootKeySetCreator rootKeySetCreator)
-
getAliasCreator
public AliasCreator getAliasCreator()
-
setAliasCreator
public AbstractInjectorGrapher.GrapherParameters setAliasCreator(AliasCreator aliasCreator)
-
getNodeCreator
public NodeCreator getNodeCreator()
-
setNodeCreator
public AbstractInjectorGrapher.GrapherParameters setNodeCreator(NodeCreator nodeCreator)
-
getEdgeCreator
public EdgeCreator getEdgeCreator()
-
setEdgeCreator
public AbstractInjectorGrapher.GrapherParameters setEdgeCreator(EdgeCreator edgeCreator)
-
-