Пример #1
0
 protected void DeactivateDetector(DetectorInterface active)
 {
     active.SetActiveState(DetectorState.INACTIVE);
 }
Пример #2
0
 public virtual void AddDetector(DetectorInterface detector)
 {
     try
     {
         proDetectors.Add(detector);
     }
     catch
     {
         throw new TokenizerException(FECT.ExceptionStength.FATAL,"error adding detector to tokenizer class");
     }
 }