Package org.jungrapht.samples
Class VertexImageShaperDemo.DemoIconShapeFunction<V>
- java.lang.Object
-
- org.jungrapht.visualization.decorators.IconShapeFunction<V>
-
- org.jungrapht.samples.VertexImageShaperDemo.DemoIconShapeFunction<V>
-
- Enclosing class:
- VertexImageShaperDemo
public static class VertexImageShaperDemo.DemoIconShapeFunction<V> extends IconShapeFunction<V>
this class exists only to provide settings to turn on/off shapes and image fill in this demo. In a real application, use VertexIconShapeTransformer instead.
-
-
Field Summary
-
Fields inherited from class org.jungrapht.visualization.decorators.IconShapeFunction
delegate, iconFunction, shapeFunction, shapeMap
-
-
Constructor Summary
Constructors Constructor Description DemoIconShapeFunction(Function<V,Shape> delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Shape
apply(V v)
get the shape from the image.boolean
isShapeImages()
void
setShapeImages(boolean shapeImages)
-
Methods inherited from class org.jungrapht.visualization.decorators.IconShapeFunction
getDelegate, getShapeFunction, setDelegate, setIconFunction, setShapeFunction
-
-
-
-
Method Detail
-
isShapeImages
public boolean isShapeImages()
- Returns:
- Returns the shapeImages.
-
setShapeImages
public void setShapeImages(boolean shapeImages)
- Parameters:
shapeImages
- The shapeImages to set.
-
apply
public Shape apply(V v)
Description copied from class:IconShapeFunction
get the shape from the image. If not available, get the shape from the delegate ShapeFunction
-
-