From 683d490074d93baa8a47db7ec43b7bd31145a12a Mon Sep 17 00:00:00 2001 From: Mark Donszelmann Date: Thu, 5 Nov 2009 23:00:15 +0100 Subject: Tar file expanded and committed --- .../sf/antcontrib/cpptasks/MockBuildListener.html | 590 +++++++++++++++++++++ 1 file changed, 590 insertions(+) create mode 100644 site/testapidocs/net/sf/antcontrib/cpptasks/MockBuildListener.html (limited to 'site/testapidocs/net/sf/antcontrib/cpptasks/MockBuildListener.html') diff --git a/site/testapidocs/net/sf/antcontrib/cpptasks/MockBuildListener.html b/site/testapidocs/net/sf/antcontrib/cpptasks/MockBuildListener.html new file mode 100644 index 0000000..4172843 --- /dev/null +++ b/site/testapidocs/net/sf/antcontrib/cpptasks/MockBuildListener.html @@ -0,0 +1,590 @@ + + + + + + + +MockBuildListener (cpptasks 1.0b5 Test API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +net.sf.antcontrib.cpptasks +
+Class MockBuildListener

+
+java.lang.Object
+  extended by net.sf.antcontrib.cpptasks.MockBuildListener
+
+
+
All Implemented Interfaces:
java.util.EventListener, org.apache.tools.ant.BuildListener
+
+
+
+
public class MockBuildListener
extends java.lang.Object
implements org.apache.tools.ant.BuildListener
+ + +

+Captures build events +

+ +

+


+ +

+ + + + + + + + + + + +
+Constructor Summary
MockBuildListener() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voidbuildFinished(org.apache.tools.ant.BuildEvent event) + +
+          Signals that the last target has finished.
+ voidbuildStarted(org.apache.tools.ant.BuildEvent event) + +
+          Signals that a build has started.
+ java.util.VectorgetBuildFinishedEvents() + +
+           
+ java.util.VectorgetBuildStartedEvents() + +
+          Gets a list of buildStarted events
+ java.util.VectorgetMessageLoggedEvents() + +
+          Gets message logged events
+ java.util.VectorgetTargetFinishedEvents() + +
+          Gets target finished events
+ java.util.VectorgetTargetStartedEvents() + +
+          Gets target started events
+ java.util.VectorgetTaskFinishedEvents() + +
+          Gets task finished events
+ java.util.VectorgetTaskStartedEvents() + +
+          Gets task started events
+ voidmessageLogged(org.apache.tools.ant.BuildEvent event) + +
+          Signals a message logging event.
+ voidtargetFinished(org.apache.tools.ant.BuildEvent event) + +
+          Signals that a target has finished.
+ voidtargetStarted(org.apache.tools.ant.BuildEvent event) + +
+          Signals that a target is starting.
+ voidtaskFinished(org.apache.tools.ant.BuildEvent event) + +
+          Signals that a task has finished.
+ voidtaskStarted(org.apache.tools.ant.BuildEvent event) + +
+          Signals that a task is starting.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+MockBuildListener

+
+public MockBuildListener()
+
+
+ + + + + + + + +
+Method Detail
+ +

+buildFinished

+
+public void buildFinished(org.apache.tools.ant.BuildEvent event)
+
+
Signals that the last target has finished. This event will still be + fired if an error occurred during the build. +

+

+
Specified by:
buildFinished in interface org.apache.tools.ant.BuildListener
+
+
+
Parameters:
event - An event with any relevant extra information. Must not be + null.
See Also:
BuildEvent.getException()
+
+
+
+ +

+buildStarted

+
+public void buildStarted(org.apache.tools.ant.BuildEvent event)
+
+
Signals that a build has started. This event is fired before any targets + have started. +

+

+
Specified by:
buildStarted in interface org.apache.tools.ant.BuildListener
+
+
+
Parameters:
event - An event with any relevant extra information. Must not be + null.
+
+
+
+ +

+getBuildFinishedEvents

+
+public java.util.Vector getBuildFinishedEvents()
+
+
+
+
+
+
+
+
+
+ +

+getBuildStartedEvents

+
+public java.util.Vector getBuildStartedEvents()
+
+
Gets a list of buildStarted events +

+

+
+
+
+ +
Returns:
list of build started events
+
+
+
+ +

+getMessageLoggedEvents

+
+public java.util.Vector getMessageLoggedEvents()
+
+
Gets message logged events +

+

+
+
+
+ +
Returns:
vector of "MessageLogged" events.
+
+
+
+ +

+getTargetFinishedEvents

+
+public java.util.Vector getTargetFinishedEvents()
+
+
Gets target finished events +

+

+
+
+
+ +
Returns:
vector of "TargetFinished" events.
+
+
+
+ +

+getTargetStartedEvents

+
+public java.util.Vector getTargetStartedEvents()
+
+
Gets target started events +

+

+
+
+
+ +
Returns:
vector of "TargetStarted" events.
+
+
+
+ +

+getTaskFinishedEvents

+
+public java.util.Vector getTaskFinishedEvents()
+
+
Gets task finished events +

+

+
+
+
+ +
Returns:
vector of "TaskFinished" events.
+
+
+
+ +

+getTaskStartedEvents

+
+public java.util.Vector getTaskStartedEvents()
+
+
Gets task started events +

+

+
+
+
+ +
Returns:
vector of "TaskStarted" events.
+
+
+
+ +

+messageLogged

+
+public void messageLogged(org.apache.tools.ant.BuildEvent event)
+
+
Signals a message logging event. +

+

+
Specified by:
messageLogged in interface org.apache.tools.ant.BuildListener
+
+
+
Parameters:
event - An event with any relevant extra information. Must not be + null.
See Also:
BuildEvent.getMessage(), +BuildEvent.getPriority()
+
+
+
+ +

+targetFinished

+
+public void targetFinished(org.apache.tools.ant.BuildEvent event)
+
+
Signals that a target has finished. This event will still be fired if an + error occurred during the build. +

+

+
Specified by:
targetFinished in interface org.apache.tools.ant.BuildListener
+
+
+
Parameters:
event - An event with any relevant extra information. Must not be + null.
See Also:
BuildEvent.getException()
+
+
+
+ +

+targetStarted

+
+public void targetStarted(org.apache.tools.ant.BuildEvent event)
+
+
Signals that a target is starting. +

+

+
Specified by:
targetStarted in interface org.apache.tools.ant.BuildListener
+
+
+
Parameters:
event - An event with any relevant extra information. Must not be + null.
See Also:
BuildEvent.getTarget()
+
+
+
+ +

+taskFinished

+
+public void taskFinished(org.apache.tools.ant.BuildEvent event)
+
+
Signals that a task has finished. This event will still be fired if an + error occurred during the build. +

+

+
Specified by:
taskFinished in interface org.apache.tools.ant.BuildListener
+
+
+
Parameters:
event - An event with any relevant extra information. Must not be + null.
See Also:
BuildEvent.getException()
+
+
+
+ +

+taskStarted

+
+public void taskStarted(org.apache.tools.ant.BuildEvent event)
+
+
Signals that a task is starting. +

+

+
Specified by:
taskStarted in interface org.apache.tools.ant.BuildListener
+
+
+
Parameters:
event - An event with any relevant extra information. Must not be + null.
See Also:
BuildEvent.getTask()
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2001-2008 Ant-Contrib Project. All Rights Reserved. + + -- cgit v1.2.3