protected virtual void ManagerOnClipboardValueChangedForRelevance(string newValue)
 {
     if (this.OnTimeValueResolver.ResolveOnTimeValue(newValue) != null)
     {
         StateProvider.UpdateStateWithNotification(RelevanceLevel.High);
     }
     else
     {
         StateProvider.UpdateStateWithNotification(RelevanceLevel.Irrelevant);
     }
 }