Searched refs:Image (Results 1 - 25 of 238) sorted by relevance

12345678910

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWBufferStrategy.java29 import java.awt.Image;
36 * Image subclass associated with that buffer will be returned.
46 public static native Image getDrawBuffer(Component comp);
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletResourceLoader.java29 import java.awt.Image;
37 public static Image getImage(URL url) {
H A DAppletImageRef.java29 import java.awt.Image;
51 Image img = Toolkit.getDefaultToolkit().createImage(new URLImageSource(url));
/openjdk7/jdk/src/share/classes/java/awt/im/spi/
H A DInputMethodDescriptor.java30 import java.awt.Image;
114 Image getInputMethodIcon(Locale inputLocale);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DImageObserver.java28 import java.awt.Image;
32 * Image information as the Image is constructed.
84 * @see Image#getWidth
85 * @see Image#getHeight
88 public boolean imageUpdate(Image img, int infoflags,
95 * @see Image#getWidth
104 * @see Image#getHeight
112 * @see Image#getProperty
H A DBufferStrategy.java30 import java.awt.Image;
/openjdk7/jdk/src/share/classes/sun/swing/
H A DImageIconUIResource.java30 import java.awt.Image;
54 * @see javax.swing.ImageIcon#ImageIcon(Image)
56 public ImageIconUIResource(Image image) {
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A DApplicationBeanInfo.java35 public Image getIcon(final int iconKind) {
/openjdk7/jdk/src/share/classes/java/awt/dnd/peer/
H A DDragSourceContextPeer.java29 import java.awt.Image;
52 void startDrag(DragSourceContext dsc, Cursor c, Image dragImage, Point imageOffset) throws InvalidDnDOperationException;
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DDrawImagePipe.java29 import java.awt.Image;
57 public boolean copyImage(SunGraphics2D sg, Image img,
62 public boolean copyImage(SunGraphics2D sg, Image img,
67 public boolean scaleImage(SunGraphics2D sg, Image img, int x, int y,
72 public boolean scaleImage(SunGraphics2D sg, Image img,
78 public boolean transformImage(SunGraphics2D sg, Image img,
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGrayFilter.java47 public static Image createDisabledImage (Image i) {
50 Image grayImage = Toolkit.getDefaultToolkit().createImage(prod);
H A DDebugGraphicsObserver.java47 public synchronized boolean imageUpdate(Image img, int infoflags,
/openjdk7/jdk/test/sun/awt/image/ImageWatched/
H A DAddNoLeak.java27 import java.awt.Image;
41 Image img = cont.createImage(new DummyImageSource());
44 public boolean imageUpdate(Image img, int infoflags, int x, int y, int width, int height) {return false;}
/openjdk7/jdk/make/tools/swing-beans/beaninfo/
H A DSwingBeanInfoBase.java30 import java.awt.Image;
60 public Image getIcon(int kind) {
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest7195106.java31 import java.awt.Image;
63 public Image getIcon(int type) {
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DIconManager.java28 import java.awt.Image;
48 icon.getImage().getScaledInstance(16, 16, Image.SCALE_SMOOTH));
/openjdk7/jdk/src/share/demo/jfc/CodePointIM/
H A DCodePointInputMethodDescriptor.java43 import java.awt.Image;
87 public Image getInputMethodIcon(Locale inputLocale) {
/openjdk7/jdk/test/javax/swing/JFileChooser/6840086/
H A Dbug6840086.java53 Image image = (Image) ShellFolder.get(key);
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DMWindowAttributes.java26 import java.awt.Image;
52 java.awt.Image icon;
/openjdk7/jdk/src/share/classes/java/beans/
H A DBeanInfo.java155 java.awt.Image getIcon(int iconKind);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DImageGraphicAttribute.java43 import java.awt.Image;
56 private Image fImage;
62 * {@link Image}. The origin is at (0, 0).
63 * @param image the <code>Image</code> rendered by this
69 public ImageGraphicAttribute(Image image, int alignment) {
76 * <code>Image</code>. The point
78 * <code>Image</code> appears at the origin of the
80 * @param image the <code>Image</code> rendered by this
86 * the <code>Image</code> that appears at the origin of the
89 * the <code>Image</cod
[all...]
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DComponentPeer.java376 Image createImage(ImageProducer producer);
392 Image createImage(int width, int height);
422 * @see Component#prepareImage(Image, int, int, ImageObserver)
424 boolean prepareImage(Image img, int w, int h, ImageObserver o);
437 * @see Component#checkImage(Image, int, int, ImageObserver)
439 int checkImage(Image img, int w, int h, ImageObserver o);
482 Image getBackBuffer();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DImageCache.java28 import java.awt.Image;
58 private ReferenceQueue<Image> referenceQueue = new ReferenceQueue<Image>();
102 * @param config The graphics configuration, needed if cached image is a Volatile Image. Used as part of cache key
106 * @return Returns the cached Image, or null there is no cached image for key
108 public Image getImage(GraphicsConfiguration config, int w, int h, Object... args) {
127 * @param config The graphics configuration, needed if cached image is a Volatile Image. Used as part of cache key
133 public boolean setImage(Image image, GraphicsConfiguration config, int w, int h, Object... args) {
165 Image img = entry.getValue().get();
190 private static class PixelCountSoftReference extends SoftReference<Image> {
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DSurfaceManager.java31 import java.awt.Image;
43 * represent an Image's contents. Subclasses can customize how the surfaces
55 public abstract SurfaceManager getSurfaceManager(Image img);
56 public abstract void setSurfaceManager(Image img, SurfaceManager mgr);
69 * Returns the SurfaceManager object contained within the given Image.
71 public static SurfaceManager getManager(Image img) {
82 throw new IllegalArgumentException("Invalid Image variant");
88 public static void setManager(Image img, SurfaceManager mgr) {
164 * Image. The capabilities object will return true for
181 * @see java.awt.Image#getCapabilitie
[all...]
/openjdk7/jdk/make/tools/swing-beans/
H A DSwingBeanInfo.template30 import java.awt.Image;
95 public Image getIcon(int kind) {
96 Image i;

Completed in 109 milliseconds

12345678910