Package org.gradle.api
Interface Describable
-
- All Known Subinterfaces:
AntlrSourceDirectorySet
,FileCopyDetails
,GitVersionControlSpec
,GroovySourceDirectorySet
,IdeWorkspace
,JavaToolchainSpec
,MutableVersionConstraint
,NativePlatform
,ScalaSourceDirectorySet
,SourceDirectorySet
,VersionConstraint
,VersionControlSpec
,VisualStudioSolution
,XcodeWorkspace
- All Known Implementing Classes:
IdeaProject
public interface Describable
Types can implement this interface when they provide a human-readable display name. It is strongly encouraged to compute this display name lazily: computing a display name, even if it's only a string concatenation, can take a significant amount of time during configuration for something that would only be used, typically, in error messages.- Since:
- 3.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDisplayName()
Returns the display name of this object.
-