Class MultiSelectedVertexPaintable.Builder<V,E,B extends MultiSelectedVertexPaintable.Builder<V,E,B>>
- java.lang.Object
-
- org.jungrapht.visualization.annotations.MultiSelectedVertexPaintable.Builder<V,E,B>
-
- Type Parameters:
V
- the vertex type
- Enclosing class:
- MultiSelectedVertexPaintable<V,E>
public static class MultiSelectedVertexPaintable.Builder<V,E,B extends MultiSelectedVertexPaintable.Builder<V,E,B>> extends Object
builder for theSelectedVertexPaintable
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MultiSelectedVertexPaintable<V,E>
build()
B
selectedVertexFunction(Function<VisualizationServer<V,E>,Collection<V>> selectedVertexFunction)
B
selectionIcon(Icon selectionIcon)
B
selectionPaint(Paint selectionPaint)
B
selectionShape(Shape selectionShape)
B
selectionStrokeMin(float selectionStrokeMin)
protected B
self()
B
useBounds(boolean useBounds)
-
-
-
Method Detail
-
self
protected B self()
-
selectionShape
public B selectionShape(Shape selectionShape)
- Parameters:
selectionShape
- the shape to draw as an indicator for selected vertices- Returns:
- this builder
-
selectionPaint
public B selectionPaint(Paint selectionPaint)
- Parameters:
selectionPaint
- the color to draw the selected vertex indicator- Returns:
- this builder
-
selectionStrokeMin
public B selectionStrokeMin(float selectionStrokeMin)
-
useBounds
public B useBounds(boolean useBounds)
-
selectedVertexFunction
public B selectedVertexFunction(Function<VisualizationServer<V,E>,Collection<V>> selectedVertexFunction)
-
build
public MultiSelectedVertexPaintable<V,E> build()
- Returns:
- a new instance of a
SelectedVertexPaintable
-
-