home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / swing / text / ChangedCharSetException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  408 b   |  22 lines

  1. package javax.swing.text;
  2.  
  3. import java.io.IOException;
  4.  
  5. public class ChangedCharSetException extends IOException {
  6.    String charSetSpec;
  7.    boolean charSetKey;
  8.  
  9.    public ChangedCharSetException(String var1, boolean var2) {
  10.       this.charSetSpec = var1;
  11.       this.charSetKey = var2;
  12.    }
  13.  
  14.    public String getCharSetSpec() {
  15.       return this.charSetSpec;
  16.    }
  17.  
  18.    public boolean keyEqualsCharSet() {
  19.       return this.charSetKey;
  20.    }
  21. }
  22.