public FindTranslateTermInfo(FindTranslateTermInfo rhs)
 {
     this.termsValue              = rhs.termsValue;
     this.langsValue              = rhs.langsValue;
     this.inclDeletedValue        = rhs.inclDeletedValue;
     this.inclToBeTranslatedValue = rhs.inclToBeTranslatedValue;
 }
示例#2
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            FindTranslateTermInfo obj  = (FindTranslateTermInfo)obj1;
            BOutputBin            bout = (BOutputBin)bout1;
            BBufferBin            bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putBoolean(obj.inclDeleted);
            if (version >= 700000000000031L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putBoolean(obj.inclToBeTranslated);
            }
            // checkpoint byps.gen.cs.PrintContext:494
            bout.writeObj(obj.langs, true, EloixClient.IndexServer.BSerializer_1888107655.instance);
            // checkpoint byps.gen.cs.PrintContext:494
            bout.writeObj(obj.terms, true, EloixClient.IndexServer.BSerializer_1888107655.instance);
        }
示例#3
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin             bin = (BInputBin)bin1;
            FindTranslateTermInfo obj = (FindTranslateTermInfo)(obj1 != null ? obj1 : bin.onObjectCreated(new FindTranslateTermInfo()));

            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.inclDeleted = bbuf.getBoolean();
            if (version >= 700000000000031L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.inclToBeTranslated = bbuf.getBoolean();
            }
            // checkpoint byps.gen.cs.PrintContext:449
            obj.langs = (String[])bin.readObj(false, EloixClient.IndexServer.BSerializer_1888107655.instance);
            // checkpoint byps.gen.cs.PrintContext:449
            obj.terms = (String[])bin.readObj(false, EloixClient.IndexServer.BSerializer_1888107655.instance);

            return(obj);
        }