Klasse AbstractMavenLogParser

Alle implementierten Schnittstellen:
Serializable
Bekannte direkte Unterklassen:
AntJavacParser, JavacParser, JavaDocParser, MavenConsoleParser

public abstract class AbstractMavenLogParser extends LookaheadParser
A base class for parsers that will work on subsections of Maven build logs. These logs can be divided into sections that are created by specific maven plugins or goals.
Autor:
Jagruti Tiwari
Siehe auch:
  • Konstruktordetails

    • AbstractMavenLogParser

      protected AbstractMavenLogParser(String pattern)
      Creates a new instance of AbstractMavenLogParser.
      Parameter:
      pattern - pattern of compiler warnings.
  • Methodendetails

    • preprocessLine

      protected void preprocessLine(String line)
      Beschreibung aus Klasse kopiert: LookaheadParser
      Preprocesses the specified line. This method is called before the line is checked for a match. Subclasses may override this empty default implementation.
      Setzt außer Kraft:
      preprocessLine in Klasse LookaheadParser
      Parameter:
      line - the line to preprocess
    • getModule

      protected String getModule()
    • getGoal

      protected String getGoal()
    • hasGoals

      protected boolean hasGoals(String... goals)