FileDocCategorySizeDatePackage
StaticGenerator.javaAPI DocExample1510Mon May 01 14:42:06 BST 2000None

StaticGenerator

public class StaticGenerator extends JComponent implements Runnable

Fields Summary
byte[]
data
BufferedImage
image
Random
random
Constructors Summary
Methods Summary
public voidinitialize()

    int w = getSize().width, h = getSize(  ).height;
    int length = ((w + 7) * h) / 8;
    data = new byte[length];
    DataBuffer db = new DataBufferByte(data, length);
    WritableRaster wr = Raster.createPackedRaster(db, w, h, 1, null);
    ColorModel cm = new IndexColorModel(1, 2,
        new byte[] { (byte)0, (byte)255 },
        new byte[] { (byte)0, (byte)255 },
        new byte[] { (byte)0, (byte)255 });
    image = new BufferedImage(cm, wr, false, null);
    random = new Random(  );
    new Thread(this).start(  );
  
public static voidmain(java.lang.String[] args)

    JFrame f = new JFrame("StaticGenerator");
    f.getContentPane().add(new StaticGenerator(  ));
    f.setSize(300, 300);
    f.setLocation(100, 100);
    f.addWindowListener(new WindowAdapter(  ) {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
    f.setVisible(true);
  
public voidpaint(java.awt.Graphics g)

    if (image == null) initialize(  );
    g.drawImage(image, 0, 0, this);
  
public voidrun()

    while (true) {
      random.nextBytes(data);
      repaint(  );
      try { Thread.sleep(1000 / 24); }
      catch( InterruptedException e ) { /* die */ }
    }