home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / INTERNET / NETSCAP4.06 / CP32E406.EXE / nav40.z / jae40.jar / sun / beans / editors / IntEditor.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-13  |  575 b   |  10 lines

  1. package sun.beans.editors;
  2.  
  3. import java.beans.PropertyEditorSupport;
  4.  
  5. public class IntEditor extends NumberEditor {
  6.    public void setAsText(String var1) throws IllegalArgumentException {
  7.       ((PropertyEditorSupport)this).setValue(Integer.valueOf(var1));
  8.    }
  9. }
  10.