Package org.glassfish.build.utils
Class ZipHelper.AntBuildListener
- java.lang.Object
-
- org.glassfish.build.utils.ZipHelper.AntBuildListener
-
- All Implemented Interfaces:
java.util.EventListener,org.apache.tools.ant.BuildListener
- Enclosing class:
- ZipHelper
private static final class ZipHelper.AntBuildListener extends java.lang.Object implements org.apache.tools.ant.BuildListenerBuilderListenerimplementation to log Ant events.
-
-
Field Summary
Fields Modifier and Type Field Description private org.apache.maven.plugin.logging.LoglogMaven logger.private static intMAX_EVENT_PRIORITYMaximum Event priority that is logged.
-
Constructor Summary
Constructors Modifier Constructor Description privateAntBuildListener(org.apache.maven.plugin.logging.Log mavenLog)Create a newAntBuildListenerinstance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbuildFinished(org.apache.tools.ant.BuildEvent event)voidbuildStarted(org.apache.tools.ant.BuildEvent event)voidmessageLogged(org.apache.tools.ant.BuildEvent event)voidtargetFinished(org.apache.tools.ant.BuildEvent event)voidtargetStarted(org.apache.tools.ant.BuildEvent event)voidtaskFinished(org.apache.tools.ant.BuildEvent event)voidtaskStarted(org.apache.tools.ant.BuildEvent event)
-
-
-
Field Detail
-
MAX_EVENT_PRIORITY
private static final int MAX_EVENT_PRIORITY
Maximum Event priority that is logged.- See Also:
- Constant Field Values
-
log
private final org.apache.maven.plugin.logging.Log log
Maven logger.
-
-
Method Detail
-
buildStarted
public void buildStarted(org.apache.tools.ant.BuildEvent event)
- Specified by:
buildStartedin interfaceorg.apache.tools.ant.BuildListener
-
buildFinished
public void buildFinished(org.apache.tools.ant.BuildEvent event)
- Specified by:
buildFinishedin interfaceorg.apache.tools.ant.BuildListener
-
targetStarted
public void targetStarted(org.apache.tools.ant.BuildEvent event)
- Specified by:
targetStartedin interfaceorg.apache.tools.ant.BuildListener
-
targetFinished
public void targetFinished(org.apache.tools.ant.BuildEvent event)
- Specified by:
targetFinishedin interfaceorg.apache.tools.ant.BuildListener
-
taskStarted
public void taskStarted(org.apache.tools.ant.BuildEvent event)
- Specified by:
taskStartedin interfaceorg.apache.tools.ant.BuildListener
-
taskFinished
public void taskFinished(org.apache.tools.ant.BuildEvent event)
- Specified by:
taskFinishedin interfaceorg.apache.tools.ant.BuildListener
-
messageLogged
public void messageLogged(org.apache.tools.ant.BuildEvent event)
- Specified by:
messageLoggedin interfaceorg.apache.tools.ant.BuildListener
-
-