Exemplo n.º 1
0
        public List <DDlSectionChunks> listOfChunks = new List <DDlSectionChunks>();                       /*Vibhor 190105 Added: If a section has chunks, it goes here*/

        public DDlConditional(DDL_COND_TYPE conditionalType        = DDL_COND_TYPE.DDL_COND_TYPE_UNDEFINED,
                              DDL_ATTR_DATA_TYPE attributeDataType = DDL_ATTR_DATA_TYPE.DDL_ATTR_DATA_TYPE_UNDEFINED,
                              byte byNumSections = 1 /*Since we have a conditional it means atleast one section*/)

        {
            condType           = conditionalType;
            byNumberOfSections = byNumSections;     /*Assuming the attribute is direct by default*/
            attrDataType       = attributeDataType; /* this has to be set by the parent!!!!*/
        }
Exemplo n.º 2
0
 public DDlAttribute(string strName     = "",
                     byte byAttributeID = DEFAULT_ATTR_ID,
                     DDL_ATTR_DATA_TYPE atttributeDataType = DDL_ATTR_DATA_TYPE.DDL_ATTR_DATA_TYPE_UNDEFINED,
                     bool bIsConditional = false
                     )
 {
     attrName     = strName;
     byAttrID     = byAttributeID;
     attrDataType = atttributeDataType;
     //pVals;
     bIsAttributeConditional = bIsConditional;
     pCond = new DDlConditional();//??????
     bIsAttributeConditionalList = false;
     byNumOfChunks = 0;
     pVals         = new VALUES();
 }
Exemplo n.º 3
0
 public void Cleanup(DDL_ATTR_DATA_TYPE dataType)//??????
 {
     ;
 }
Exemplo n.º 4
0
 public DDlSectionChunks(DDL_ATTR_DATA_TYPE atttributeDataType = DDL_ATTR_DATA_TYPE.DDL_ATTR_DATA_TYPE_UNDEFINED)
 {
     attrDataType  = atttributeDataType;
     byNumOfChunks = 0;
 }