home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161a.iso / handson / files / copyjava.exe / com / sun / java / swing / WindowConstants.class (.txt) < prev   
Encoding:
Java Class File  |  1998-02-26  |  325 b   |  8 lines

  1. package com.sun.java.swing;
  2.  
  3. public interface WindowConstants {
  4.    int DO_NOTHING_ON_CLOSE = 0;
  5.    int HIDE_ON_CLOSE = 1;
  6.    int DISPOSE_ON_CLOSE = 2;
  7. }
  8.