コード例 #1
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin bin = (BInputBin)bin1;
            HashTag   obj = (HashTag)(obj1 != null ? obj1 : bin.onObjectCreated(new HashTag()));

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

            // checkpoint byps.gen.cs.PrintContext:449
            obj.counter = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.createDateIso = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.hstgGuid = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.hstgName = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.lastUsedIso = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.status = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.tStamp = bbuf.getString();

            return(obj);
        }
コード例 #2
0
ファイル: HashTag.cs プロジェクト: ThomasEcherer/elo
 public HashTag(HashTag rhs) : base(rhs)
 {
     this.hstgGuidValue      = rhs.hstgGuidValue;
     this.hstgNameValue      = rhs.hstgNameValue;
     this.createDateIsoValue = rhs.createDateIsoValue;
     this.lastUsedIsoValue   = rhs.lastUsedIsoValue;
     this.counterValue       = rhs.counterValue;
     this.tStampValue        = rhs.tStampValue;
     this.statusValue        = rhs.statusValue;
 }
コード例 #3
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            base.write(obj1, bout1, version);
            HashTag    obj  = (HashTag)obj1;
            BOutputBin bout = (BOutputBin)bout1;
            BBufferBin bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.counter);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.createDateIso);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.hstgGuid);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.hstgName);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.lastUsedIso);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.status);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.tStamp);
        }