コード例 #1
0
        private DExcExtractorList CreateList(TState aAssociatedState, DExcExtractorListType aType, params Regex[] aExpressions)
        {
            DExcExtractorList ret = new DExcExtractorList(aAssociatedState, aType);

            PrepareList(ret, aExpressions);
            return(ret);
        }
コード例 #2
0
 public DExcExtractorList this[DExcExtractorListType aType]
 {
     get
     {
         DExcExtractorList ret = null;
         //
         if (iLists.ContainsKey(aType))
         {
             ret = iLists[aType];
         }
         //
         return(ret);
     }
 }
コード例 #3
0
 public DExcExtractorListStackData(DExcExtractor.TState aState, DExcExtractorListType aType)
     : base(aState, aType)
 {
     iPrimer = new DataBufferPrimer(iBuffer);
 }
コード例 #4
0
 public DExcExtractorList(DExcExtractor.TState aState, DExcExtractorListType aType)
 {
     iType  = aType;
     iState = aState;
 }
コード例 #5
0
 public DExcExtractorListThreadInfo(DExcExtractor.TState aState, DExcExtractorListType aType)
     : base(aState, aType)
 {
 }