Show
Ignore:
Timestamp:
07/11/08 06:20:01 (4 years ago)
Author:
amandel
Message:

New - not yet covered checkstyle message pattern.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/java/org/jcoderz/phoenix/report/CheckstyleFindingType.java

    r1011 r1080  
    538538  /** 
    539539   * Checkstyle finding type that relates to: 
    540    * <i>Unable to get class information for EJBException..</i>. 
     540   * <i>Unable to get class information for .....</i>. 
    541541   */ 
    542542  public static final CheckstyleFindingType CS_EXCEPTION_CLASS_NOT_FOUND = 
     
    546546          + "class path setting.", 
    547547          "Unable to get class information for .*\\."); 
     548 
     549  /** 
     550   * Checkstyle finding type that relates to: 
     551   * <i>Using '.*' is not allowed.</i>. 
     552   */ 
     553  public static final CheckstyleFindingType CS_TYPE_NOT_ALLOWED = 
     554      new CheckstyleFindingType("CS_TYPE_NOT_ALLOWED", 
     555          "Use of a type that is not permited.", 
     556          "The type noted in the message should not be used.", 
     557          "Using '.*' is not allowed\\."); 
    548558 
    549559  /**