uk.ac.starlink.util.images.ImageHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stil Show documentation
Show all versions of stil Show documentation
Starlink Tables Infrastructure Library
package uk.ac.starlink.util.images;
/**
* Simple class for placeholding a directory of images.
*
* Use this to access images using the getResource method of Class.
* For instance the code snippet following loads the "exit.gif" image.
*
* import uk.ac.starlink.util.images.ImageHolder;
* ....
* ImageIcon icon = ImageHolder.class.getResource( "exit.gif" );
*
*/
public class ImageHolder
{
// Does nothing.
}