All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.valkyriercp.image.ImageSource Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package org.valkyriercp.image;

import java.awt.*;

/**
 * A interface for retrieving images by key. The key abstracts away the path to
 * the image resource, effectively acting as an alias. For example, the key
 * wizard.pageImage may map to a image resource in the classpath
 * at /images/wizard/title_banner.gif
 * 

*

* Image source implementations are responsible for resolving the underlying * image resource and loading it into memory. They may also cache image * resources. * * @author Keith Donald */ public interface ImageSource { /** * Loads the image with the specified key. Caching may or may not be * performed. *

*

* If the load is successful, the image resource is returned. If the load * fails, a broken image indicator is returned if it is set for this source. * If not set, an exception is thrown. * * @param key * The image key * @return The image. * @throws NoSuchImageResourceException, * if no image could be found and no broken image indicator is * set. */ public Image getImage(String key); /** * Returns the image resource indexed by the specified key. A resource is a * lightweight pointer to the image in the classpath, filesystem, or * network, and not the actual loaded image itself. * * @param key * The image key. * @return The image resource. */ public AwtImageResource getImageResource(String key); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy