Ejemplo n.º 1
0
 public WorkflowExportOptions(WorkflowExportOptions rhs)
 {
     this.flowIdValue       = rhs.flowIdValue;
     this.flowVersIdValue   = rhs.flowVersIdValue;
     this.characterSetValue = rhs.characterSetValue;
     this.wordWrapValue     = rhs.wordWrapValue;
     this.formatValue       = rhs.formatValue;
 }
Ejemplo n.º 2
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            WorkflowExportOptions obj  = (WorkflowExportOptions)obj1;
            BOutputBin            bout = (BOutputBin)bout1;
            BBufferBin            bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.characterSet);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.flowId);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.flowVersId);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.wordWrap);
            if (version >= 900000016000017L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putInt(obj.format);
            }
        }
Ejemplo n.º 3
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin             bin = (BInputBin)bin1;
            WorkflowExportOptions obj = (WorkflowExportOptions)(obj1 != null ? obj1 : bin.onObjectCreated(new WorkflowExportOptions()));

            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.characterSet = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.flowId = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.flowVersId = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.wordWrap = bbuf.getString();
            if (version >= 900000016000017L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.format = bbuf.getInt();
            }

            return(obj);
        }