Esempio n. 1
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            base.write(obj1, bout1, version);
            EloIxOpt_old obj  = (EloIxOpt_old)obj1;
            BOutputBin   bout = (BOutputBin)bout1;
            BBufferBin   bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.optNo);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.optVal);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.remark);
        }
Esempio n. 2
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin    bin = (BInputBin)bin1;
            EloIxOpt_old obj = (EloIxOpt_old)(obj1 != null ? obj1 : bin.onObjectCreated(new EloIxOpt_old()));

            base.read(obj, bin1, version);
            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.optNo = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.optVal = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.remark = bbuf.getString();

            return(obj);
        }
Esempio n. 3
0
 public EloIxOpt_old(EloIxOpt_old rhs) : base(rhs)
 {
     this.optNoValue  = rhs.optNoValue;
     this.optValValue = rhs.optValValue;
     this.remarkValue = rhs.remarkValue;
 }