Package org.sonar.iac.docker.tree.api
Interface ArgumentList
-
- All Superinterfaces:
DockerTree,HasArguments,HasTextRange,Tree
- All Known Subinterfaces:
ExecForm,HereDocument,ShellForm
- All Known Implementing Classes:
ExecFormImpl,HereDocumentImpl,ShellFormImpl
public interface ArgumentList extends HasArguments, DockerTree
Common interface for the specifics form used by some instruction. It is currently implemented byHereDocument,ExecFormandShellForm. They all have in common that they provide a List of Argument, they just follow different format. Examples :arg1 arg2 arg3["arg1", "arg2", "arg3"]<<INPUT arg1\narg2\nINPUT\n
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.sonar.iac.docker.tree.api.DockerTree
DockerTree.Kind
-
-
Method Summary
-
Methods inherited from interface org.sonar.iac.docker.tree.api.DockerTree
getKind, is, parent, setParent
-
Methods inherited from interface org.sonar.iac.docker.tree.api.HasArguments
arguments
-
Methods inherited from interface org.sonar.iac.common.api.tree.HasTextRange
textRange
-
-