Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.0
public class MemoryImageSource extends Object implements ImageProducer { // Public Constructors public MemoryImageSource(int w, int h, ColorModel cm, byte[] pix, int off, int scan); public MemoryImageSource(int w, int h, ColorModel cm, byte[] pix, int off, int scan, Hashtable props); public MemoryImageSource(int w, int h, ColorModel cm, int[] pix, int off, int scan); public MemoryImageSource(int w, int h, ColorModel cm, int[] pix, int off, int scan, Hashtable props); public MemoryImageSource(int w, int h, int[] pix, int off, int scan); public MemoryImageSource(int w, int h, int[] pix, int off, int scan, Hashtable props); // Public Instance Methods public synchronized void addConsumer(ImageConsumer ic); public synchronized boolean isConsumer(ImageConsumer ic); 1.1 public void newPixels(); 1.1 public synchronized void newPixels(int x, int y, int w, int h); 1.1 public synchronized void newPixels(int x, int y, int w, int h, boolean framenotify); 1.1 public synchronized void newPixels(byte[] newpix, ColorModel newmodel, int offset, int scansize); 1.1 public synchronized void newPixels(int[] newpix, ColorModel newmodel, int offset, int scansize); public synchronized void removeConsumer(ImageConsumer ic); public void requestTopDownLeftRightResend(ImageConsumer ic); 1.1 public synchronized void setAnimated(boolean animated); 1.1 public synchronized void setFullBufferUpdates(boolean fullbuffers); public void startProduction(ImageConsumer ic); }