Exemplo n.º 1
0
        /// <summary>
        /// Gets the segment handler for the specified segment
        /// </summary>
        public static ISegmentHandler GetSegmentHandler(string name)
        {
            ISegmentHandler handler = null;

            s_segmentHandlers.TryGetValue(name, out handler);
            return(handler);
        }
Exemplo n.º 2
0
 public void Report(ISegmentHandler handler, ErrorLevel errorLevel, string message, TextLocation from, TextLocation to)
 {
     reporter.ReportMessage(handler, $"{handler.GetType().Name}", errorLevel, message, from, to);
 }
 public void Report(ISegmentHandler handler, ErrorLevel errorLevel, string message, string locationDescription)
 {
 }
Exemplo n.º 4
0
 public void Report(ISegmentHandler handler, ErrorLevel errorLevel, string message, string locationDescription)
 {
     reporter.ReportMessage(handler, $"{handler.GetType().Name}", errorLevel, message, locationDescription);
 }
 public void Report(ISegmentHandler handler, ErrorLevel errorLevel, string message, TextLocation from, TextLocation to)
 {
 }