Class CommentAnalyser

java.lang.Object
com.sonar.sslr.api.CommentAnalyser

public abstract class CommentAnalyser extends Object
  • Constructor Details

    • CommentAnalyser

      public CommentAnalyser()
  • Method Details

    • isBlank

      public abstract boolean isBlank(String line)
      Check whether or not a comment line is blank
      Parameters:
      line - A line of the comment, excluding the comment tags
      Returns:
      true if the line is considered blank and false otherwise
    • getContents

      public abstract String getContents(String comment)
      Extract the content of a comment, i.e. remove the comment tags
      Parameters:
      comment - Raw comment value
      Returns:
      The content of the comment, without the tags