Uses of Interface
org.sonar.plugins.python.api.tree.DottedName
-
Packages that use DottedName Package Description org.sonar.plugins.python.api.tree org.sonar.python.tree -
-
Uses of DottedName in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return DottedName Modifier and Type Method Description DottedNameAliasedName. dottedName()DottedNameImportFrom. module()DottedNameDecorator. name()Methods in org.sonar.plugins.python.api.tree with parameters of type DottedName Modifier and Type Method Description voidBaseTreeVisitor. visitDottedName(DottedName dottedName)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()Constructors in org.sonar.python.tree with parameters of type DottedName Constructor Description AliasedNameImpl(DottedName dottedName)AliasedNameImpl(Token asKeyword, DottedName dottedName, Name alias)DecoratorImpl(Token atToken, DottedName dottedName, Token lPar, ArgList argListTree, Token rPar, Token newLineToken)ImportFromImpl(Token fromKeyword, List<Token> dottedPrefixForModule, DottedName moduleName, Token importKeyword, List<AliasedName> aliasedImportNames, Token wildcard, Separators separators)
-