Uses of Interface
org.sonar.python.api.tree.DottedName
-
Packages that use DottedName Package Description org.sonar.python.api.tree org.sonar.python.tree -
-
Uses of DottedName in org.sonar.python.api.tree
Methods in org.sonar.python.api.tree that return DottedName Modifier and Type Method Description DottedNameAliasedName. dottedName()DottedNameImportFrom. module()DottedNameDecorator. name()Methods in org.sonar.python.api.tree with parameters of type DottedName Modifier and Type Method Description voidTreeVisitor. visitDottedName(DottedName dottedName) -
Uses of DottedName in org.sonar.python.tree
Classes in org.sonar.python.tree that implement DottedName Modifier and Type Class Description classDottedNameImplMethods in org.sonar.python.tree that return DottedName Modifier and Type Method Description DottedNameAliasedNameImpl. dottedName()DottedNameImportFromImpl. module()DottedNameDecoratorImpl. name()Methods in org.sonar.python.tree with parameters of type DottedName Modifier and Type Method Description voidBaseTreeVisitor. visitDottedName(DottedName dottedName)Constructors in org.sonar.python.tree with parameters of type DottedName Constructor Description AliasedNameImpl(com.sonar.sslr.api.AstNode astNode, Token asKeyword, DottedName dottedName, Name alias)DecoratorImpl(com.sonar.sslr.api.AstNode astNode, Token atToken, DottedName dottedName, Token lPar, ArgList argListTree, Token rPar)ImportFromImpl(com.sonar.sslr.api.AstNode astNode, Token fromKeyword, List<Token> dottedPrefixForModule, DottedName moduleName, Token importKeyword, List<AliasedName> aliasedImportNames, boolean isWildcardImport)
-