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