home *** CD-ROM | disk | FTP | other *** search
- package netrexx.lang;
-
- public final class RexxSet {
- public static final byte SCIENTIFIC = 0;
- public static final byte ENGINEERING = 1;
- public static final byte DEFAULT_FORM = 0;
- public static final int DEFAULT_DIGITS = 9;
- public int digits;
- public byte form;
- // $FF: renamed from: $0 java.lang.String
- private static final String field_0 = "RexxSet.nrx";
-
- public RexxSet() {
- this.digits = 9;
- }
-
- public RexxSet(int var1) {
- this();
- this.digits = var1;
- }
-
- public RexxSet(int var1, byte var2) {
- this();
- this.digits = var1;
- this.form = var2;
- }
-
- public RexxSet(RexxSet var1) {
- this();
- this.digits = var1.digits;
- this.form = var1.form;
- }
-
- public Rexx formword() {
- return this.form == 0 ? new Rexx("scientific") : new Rexx("engineering");
- }
- }
-