Example #1
0
        //--------------------------------------------------------------------//
        //                                              C o n s t r u c t o r //
        // P C L X L A t t r i b u t e                                        //
        //                                                                    //
        //--------------------------------------------------------------------//

        public PCLXLAttribute(Int32 tagLen,
                              Byte tagA,
                              Byte tagB,
                              Boolean flagReserved,
                              Boolean flagAttrEnum,
                              Boolean flagOperEnum,
                              Boolean flagUbyteTxt,
                              Boolean flagUintTxt,
                              Boolean flagValIsLen,
                              Boolean flagValIsPCL,
                              PrnParseConstants.eActPCLXL actionType,
                              PrnParseConstants.eOvlAct makeOvlAct,
                              String description)
        {
            _tagLen       = tagLen;
            _tagA         = tagA;
            _tagB         = tagB;
            _flagReserved = flagReserved;
            _flagAttrEnum = flagAttrEnum;
            _flagOperEnum = flagOperEnum;
            _flagUbyteTxt = flagUbyteTxt;
            _flagUintTxt  = flagUintTxt;
            _flagValIsLen = flagValIsLen;
            _flagValIsPCL = flagValIsPCL;
            _actionType   = actionType;
            _makeOvlAct   = makeOvlAct;
            _description  = description;

            _statsCtParent = 0;
            _statsCtChild  = 0;
        }
Example #2
0
        //--------------------------------------------------------------------//
        //                                                        M e t h o d //
        // g e t D e t a i l s                                                //
        //                                                                    //
        //--------------------------------------------------------------------//

        public void getDetails(
            ref Boolean flagReserved,
            ref Boolean flagAttrEnum,
            ref Boolean flagOperEnum,
            ref Boolean flagUbyteTxt,
            ref Boolean flagUintTxt,
            ref Boolean flagValIsLen,
            ref Boolean flagValIsPCL,
            ref PrnParseConstants.eActPCLXL actionType,
            ref PrnParseConstants.eOvlAct makeOvlAct,
            ref String description)
        {
            flagReserved = _flagReserved;
            flagAttrEnum = _flagAttrEnum;
            flagOperEnum = _flagOperEnum;
            flagUbyteTxt = _flagUbyteTxt;
            flagUintTxt  = _flagUintTxt;
            flagValIsLen = _flagValIsLen;
            flagValIsPCL = _flagValIsPCL;
            makeOvlAct   = _makeOvlAct;
            description  = _description;
        }