Exemple #1
0
 public RepliHistC(RepliHistC rhs)
 {
     this.lnTSDateValue   = rhs.lnTSDateValue;
     this.lnArcGuidValue  = rhs.lnArcGuidValue;
     this.lnArcShortValue = rhs.lnArcShortValue;
     this.lnArcDescValue  = rhs.lnArcDescValue;
     this.lnTSBeginValue  = rhs.lnTSBeginValue;
     this.lnTSEndValue    = rhs.lnTSEndValue;
 }
Exemple #2
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            RepliHistC obj  = (RepliHistC)obj1;
            BOutputBin bout = (BOutputBin)bout1;
            BBufferBin bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.lnArcDesc);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.lnArcGuid);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.lnArcShort);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.lnTSBegin);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.lnTSDate);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.lnTSEnd);
        }
Exemple #3
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin  bin = (BInputBin)bin1;
            RepliHistC obj = (RepliHistC)(obj1 != null ? obj1 : bin.onObjectCreated(new RepliHistC()));

            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.lnArcDesc = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.lnArcGuid = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.lnArcShort = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.lnTSBegin = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.lnTSDate = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.lnTSEnd = bbuf.getInt();

            return(obj);
        }