public DExcExtractorListStackData(DExcExtractor.TState aState, DExcExtractorListType aType)
     : base(aState, aType)
 {
     iPrimer = new DataBufferPrimer(iBuffer);
 }
Esempio n. 2
0
 public DExcExtractorList(DExcExtractor.TState aState, DExcExtractorListType aType)
 {
     iType  = aType;
     iState = aState;
 }
Esempio n. 3
0
 private DExcExtractorEntry(Regex aExpression, TType aType, DExcExtractor.TState aNewState)
 {
     iType       = aType;
     iNewState   = aNewState;
     iExpression = aExpression;
 }
Esempio n. 4
0
 public DExcExtractorListThreadInfo(DExcExtractor.TState aState, DExcExtractorListType aType)
     : base(aState, aType)
 {
 }
Esempio n. 5
0
        public static DExcExtractorEntry NewMatchSaveAndTransition(Regex aExpression, DExcExtractor.TState aNewState)
        {
            DExcExtractorEntry ret = new DExcExtractorEntry(aExpression, TType.ETypeMatchSaveAndTransition, aNewState);

            return(ret);
        }