home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / Notes.jar / Acme / JPM / Encoders / GifEncoderHashitem.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-16  |  596 b   |  16 lines

  1. package Acme.JPM.Encoders;
  2.  
  3. class GifEncoderHashitem {
  4.    public int rgb;
  5.    public int count;
  6.    public int index;
  7.    public boolean isTransparent;
  8.  
  9.    public GifEncoderHashitem(int rgb, int count, int index, boolean isTransparent) {
  10.       this.rgb = rgb;
  11.       this.count = count;
  12.       this.index = index;
  13.       this.isTransparent = isTransparent;
  14.    }
  15. }
  16.