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