home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / sun / beans / editors / DoubleEditor.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  579 b   |  10 lines

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