Groovy Documentation

org.gradle.tooling.model
[Java] Interface Launchable


@Incubating
public interface Launchable

Represents an object that can be used to launch a Gradle build, such as a task.

To launch a build, you pass one or more Launchable instances to either BuildLauncher.forTasks or BuildLauncher.forLaunchables.

Since:
1.12


Method Summary
String getDescription()

Returns the description of this launchable, or null if it has no description.

String getDisplayName()

Returns a human-consumable display name for this launchable.

 

Method Detail

getDescription

@Nullable
public String getDescription()
Returns the description of this launchable, or null if it has no description.
Returns:
The description of this launchable, or null if it has no description.
Since:
1.12


getDisplayName

public String getDisplayName()
Returns a human-consumable display name for this launchable.
Returns:
Display name of this launchable.
Since:
1.12


 

Gradle API 1.12