Package org.sonar.iac.docker.tree.api
Interface Body
-
- All Superinterfaces:
DockerTree,HasScope,HasTextRange,Tree
- All Known Implementing Classes:
BodyImpl
public interface Body extends DockerTree, HasScope
Represents the content of a Dockerfile. A dockerfile currently contain a list ofArgInstructionfollowed by a list ofDockerImage. The ArgInstruction are considered to be global.dockerImages()globalArgs()dockerImages()
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.sonar.iac.docker.tree.api.DockerTree
DockerTree.Kind
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<DockerImage>dockerImages()List<ArgInstruction>globalArgs()-
Methods inherited from interface org.sonar.iac.docker.tree.api.DockerTree
getKind, is, parent, setParent
-
Methods inherited from interface org.sonar.iac.common.api.tree.HasTextRange
textRange
-
-
-
-
Method Detail
-
globalArgs
List<ArgInstruction> globalArgs()
-
dockerImages
List<DockerImage> dockerImages()
-
-