Searched defs:ImageCache (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/swing/
H A DImageCache.java36 public class ImageCache { class
42 public ImageCache(int maxCount) { method in class:ImageCache
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DImageCache.java39 * ImageCache - A fixed pixel count sized cache of Images keyed by arbitrary set of arguments. All images are held with
45 class ImageCache { class
60 private static final ImageCache instance = new ImageCache();
64 static ImageCache getInstance() {
68 public ImageCache() { method in class:ImageCache
73 public ImageCache(int maxPixelCount, int maxSingleImagePixelSize) { method in class:ImageCache
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DImageCache.java38 * ImageCache - A fixed pixel count sized cache of Images keyed by arbitrary set of arguments. All images are held with
42 final class ImageCache { class
57 private static final RecyclableSingleton<ImageCache> instance = new RecyclableSingleton<ImageCache>() {
59 protected ImageCache getInstance() {
60 return new ImageCache();
63 static ImageCache getInstance() {
67 ImageCache(final int maxPixelCount) { method in class:ImageCache
71 ImageCache() { method in class:ImageCache

Completed in 36 milliseconds