public override HexTextElementCreator Create(string contentType)
        {
            if (contentType == null)
            {
                throw new ArgumentNullException(nameof(contentType));
            }
            var classificationFormatMap = classificationFormatMapService.GetClassificationFormatMap(AppearanceCategoryConstants.UIMisc);

            return(new HexTextElementCreatorImpl(textElementProvider, classificationFormatMap, contentType));
        }
 public override VSTC.IClassificationFormatMap GetClassificationFormatMap(string category) => classificationFormatMapService.GetClassificationFormatMap(category);