home *** CD-ROM | disk | FTP | other *** search
/ Datatid 1998 #7 & #8 / Datatid-1998-07&08.iso / internet / visual / main.bin / BevelStyle.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-08-04  |  469 b   |  13 lines

  1. package symantec.itools.awt;
  2.  
  3. public interface BevelStyle {
  4.    int BEVEL_LOWERED = 0;
  5.    int BEVEL_RAISED = 1;
  6.    int BEVEL_LINE = 2;
  7.    int BEVEL_NONE = 3;
  8.  
  9.    void setBevelStyle(int var1);
  10.  
  11.    int getBevelStyle();
  12. }
  13.