Uses of Interface
org.sonar.plugins.java.api.tree.ModuleNameTree
-
Packages that use ModuleNameTree Package Description org.sonar.java.ast.parser org.sonar.java.model.declaration org.sonar.plugins.java.api.tree Provides interfaces to represent Java source code as syntax tree. -
-
Uses of ModuleNameTree in org.sonar.java.ast.parser
Classes in org.sonar.java.ast.parser that implement ModuleNameTree Modifier and Type Class Description class
ModuleNameTreeImpl
-
Uses of ModuleNameTree in org.sonar.java.model.declaration
Methods in org.sonar.java.model.declaration that return ModuleNameTree Modifier and Type Method Description ModuleNameTree
ModuleDeclarationTreeImpl. moduleName()
ModuleNameTree
RequiresDirectiveTreeImpl. moduleName()
Methods in org.sonar.java.model.declaration that return types with arguments of type ModuleNameTree Modifier and Type Method Description ListTree<ModuleNameTree>
ExportsDirectiveTreeImpl. moduleNames()
ListTree<ModuleNameTree>
OpensDirectiveTreeImpl. moduleNames()
Constructors in org.sonar.java.model.declaration with parameters of type ModuleNameTree Constructor Description ModuleDeclarationTreeImpl(List<AnnotationTree> annotations, InternalSyntaxToken openKeyword, InternalSyntaxToken moduleKeyword, ModuleNameTree moduleName, InternalSyntaxToken openBraceToken, List<ModuleDirectiveTree> moduleDirectives, InternalSyntaxToken closeBraceToken)
RequiresDirectiveTreeImpl(InternalSyntaxToken requiresKeyword, ModifiersTree modifiers, ModuleNameTree moduleName, InternalSyntaxToken semicolonToken)
Constructor parameters in org.sonar.java.model.declaration with type arguments of type ModuleNameTree Constructor Description ExportsDirectiveTreeImpl(InternalSyntaxToken exportsKeyword, ExpressionTree packageName, InternalSyntaxToken toKeyword, ListTree<ModuleNameTree> moduleNames, InternalSyntaxToken semicolonToken)
ModuleNameListTreeImpl(List<ModuleNameTree> moduleNames, List<SyntaxToken> separators)
OpensDirectiveTreeImpl(InternalSyntaxToken opensKeyword, ExpressionTree packageName, InternalSyntaxToken toKeyword, ListTree<ModuleNameTree> moduleNames, InternalSyntaxToken semicolonToken)
-
Uses of ModuleNameTree in org.sonar.plugins.java.api.tree
Methods in org.sonar.plugins.java.api.tree that return ModuleNameTree Modifier and Type Method Description ModuleNameTree
ModuleDeclarationTree. moduleName()
ModuleNameTree
RequiresDirectiveTree. moduleName()
Methods in org.sonar.plugins.java.api.tree that return types with arguments of type ModuleNameTree Modifier and Type Method Description ListTree<ModuleNameTree>
ExportsDirectiveTree. moduleNames()
ListTree<ModuleNameTree>
OpensDirectiveTree. moduleNames()
-