gradle
8.2-milestone-1
Kotlin DSL
gradle
/
org.gradle.tooling.model
/
HierarchicalElement
Hierarchical
Element
interface
HierarchicalElement
:
Element
Represents an element which belongs to some hierarchy.
Inheritors
GradleProject
HierarchicalEclipseProject
IdeaProject
IdeaModule
Members
Functions
get
Children
Link copied to clipboard
abstract
fun
getChildren
(
)
:
DomainObjectSet
<
out
HierarchicalElement
>
Returns the child elements, or the empty set if there are no child elements.
get
Description
Link copied to clipboard
abstract
fun
getDescription
(
)
:
String
get
Name
Link copied to clipboard
abstract
fun
getName
(
)
:
String
get
Parent
Link copied to clipboard
@
Nullable
abstract
fun
getParent
(
)
:
HierarchicalElement
Returns the parent of this element, or
null
if there is no parent.