Class IconShapeFunction<T>

  • All Implemented Interfaces:
    Function<T,​Shape>
    Direct Known Subclasses:
    VertexImageShaperDemo.DemoIconShapeFunction

    public class IconShapeFunction<T>
    extends Object
    implements Function<T,​Shape>
    A default implementation that stores images in a Map keyed on the input T. Also applies a shaping function to images to extract the shape of the opaque part of a transparent image.
    Author:
    Tom Nelson
    • Constructor Detail

      • IconShapeFunction

        public IconShapeFunction​(Function<T,​Shape> delegate)
        Creates an instance with the specified delegate.
        Parameters:
        delegate - the function to use if no image is present for the input t
    • Method Detail

      • getDelegate

        public Function<T,​Shape> getDelegate()
        Returns:
        Returns the delegate.
      • setDelegate

        public void setDelegate​(Function<T,​Shape> delegate)
        Parameters:
        delegate - The delegate to set.
      • apply

        public Shape apply​(T t)
        get the shape from the image. If not available, get the shape from the delegate ShapeFunction
        Specified by:
        apply in interface Function<T,​Shape>
      • setIconFunction

        public void setIconFunction​(Function<T,​Icon> iconFunction)
        Parameters:
        iconFunction - the iconFunction to set
      • getShapeFunction

        public Function<Image,​Shape> getShapeFunction()
        Returns:
        the shapeFunction
      • setShapeFunction

        public void setShapeFunction​(Function<Image,​Shape> shapeFunction)
        Parameters:
        shapeFunction - the shapeFunction to set