package project.Entrytypes; import java.util.*; import org.overture.codegen.runtime.*; import org.overture.codegen.vdm2jml.runtime.*; @SuppressWarnings("all") //@ nullable_by_default final public class B2 implements Record { public Number x; //@ public instance invariant project.Entry.invChecksOn ==> inv_B2(x); public B2(final Number _x) { //@ assert Utils.is_int(_x); x = _x; //@ assert Utils.is_int(x); } /*@ pure @*/ public boolean equals(final Object obj) { if (!(obj instanceof project.Entrytypes.B2)) { return false; } project.Entrytypes.B2 other = ((project.Entrytypes.B2) obj); return Utils.equals(x, other.x); } /*@ pure @*/ public int hashCode() { return Utils.hashCode(x); } /*@ pure @*/ public project.Entrytypes.B2 copy() { return new project.Entrytypes.B2(x); } /*@ pure @*/ public String toString() { return "mk_Entry`B2" + Utils.formatFields(x); } /*@ pure @*/ public Number get_x() { Number ret_4 = x; //@ assert project.Entry.invChecksOn ==> (Utils.is_int(ret_4)); return ret_4; } public void set_x(final Number _x) { //@ assert project.Entry.invChecksOn ==> (Utils.is_int(_x)); x = _x; //@ assert project.Entry.invChecksOn ==> (Utils.is_int(x)); } /*@ pure @*/ public Boolean valid() { return true; } /*@ pure @*/ /*@ helper @*/ public static Boolean inv_B2(final Number _x) { return _x.longValue() > 0L; } }