home *** CD-ROM | disk | FTP | other *** search
- package sun.beans.editors;
-
- import java.beans.PropertyEditorSupport;
-
- public class FloatEditor extends NumberEditor {
- public String getJavaInitializationString() {
- return ((PropertyEditorSupport)this).getValue() + "F";
- }
-
- public void setAsText(String var1) throws IllegalArgumentException {
- ((PropertyEditorSupport)this).setValue(Float.valueOf(var1));
- }
- }
-