/// <summary>
 /// Initializes a new instance of the SuppressStyleCopQuickFix class that can handle
 /// <see cref="StyleCopViolationWarning"/>.
 /// </summary>
 /// <param name="highlight">
 /// <see cref="StyleCopViolationWarning"/>that has been detected.
 /// </param>
 public SuppressStyleCopQuickFix(StyleCopViolationWarning highlight)
     : this(highlight, true)
 {
 }
 /// <summary>
 /// Initializes a new instance of the SA1211QuickFix class that can handle
 /// <see cref="StyleCopViolationWarning"/>.
 /// </summary>
 /// <param name="highlight">
 /// <see cref="StyleCopViolationWarning"/>that has been detected.
 /// </param>
 public SA1211QuickFix(StyleCopViolationWarning highlight)
     : base(highlight)
 {
 }
 /// <summary>
 /// Initializes a new instance of the QuickFixBase class that can handle
 /// <see cref="StyleCopViolationWarning"/>.
 /// </summary>
 /// <param name="highlight">
 /// <see cref="StyleCopViolationWarning"/>that has been detected.
 /// </param>
 protected QuickFixBase(StyleCopViolationWarning highlight)
     : this(highlight, true)
 {
 }