Interface ImageSource<T,D>

  • Type Parameters:
    T - the type of things the data is connected to.
    D - the type of objects this image source creates.


    public interface ImageSource<T,D>
    • Method Summary

      Modifier and Type Method and Description
      D load(T thing)
      Create the image.
    • Method Detail

      • load

        D load(T thing)
        Create the image.
        Parameters:
        thing - the thing to load data for.
        Returns:
        the image or null on error.