org.gradle
Class BuildResult

java.lang.Object
  extended by org.gradle.BuildResult

public class BuildResult
extends java.lang.Object

A BuildResult packages up the results of a build executed by a Gradle instance.


Constructor Summary
BuildResult(Settings settings, Build build, java.lang.Throwable failure)
           
 
Method Summary
 Build getBuild()
           
 java.lang.Throwable getFailure()
           
 Settings getSettings()
           
 void rethrowFailure()
          Rethrows the build failure.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BuildResult

public BuildResult(Settings settings,
                   Build build,
                   java.lang.Throwable failure)
Method Detail

getSettings

public Settings getSettings()

getBuild

public Build getBuild()

getFailure

public java.lang.Throwable getFailure()

rethrowFailure

public void rethrowFailure()

Rethrows the build failure. Does nothing if there was no build failure.