Class java.awt.image.MemoryImageSource (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);
    public void newPixels( );
    public synchronized void newPixels(int x, int y, int w, int h);
    public synchronized void newPixels(int x, int y, int w, int h, boolean framenotify);
    public synchronized void newPixels(byte[ ] newpix, ColorModel newmodel, int offset, int scansize);
    public synchronized void newPixels(int[ ] newpix, ColorModel newmodel, int offset, int scansize);
    public synchronized void removeConsumer(ImageConsumer ic);
    public void requestTopDownLeftRightResend(ImageConsumer ic);  // Empty
    public synchronized void setAnimated(boolean animated);
    public synchronized void setFullBufferUpdates(boolean fullbuffers);
    public void startProduction(ImageConsumer ic);
}