Uses of Interface
org.sonar.python.api.tree.PyDottedNameTree
-
Packages that use PyDottedNameTree Package Description org.sonar.python.api.tree org.sonar.python.tree -
-
Uses of PyDottedNameTree in org.sonar.python.api.tree
Methods in org.sonar.python.api.tree that return PyDottedNameTree Modifier and Type Method Description PyDottedNameTreePyAliasedNameTree. dottedName()PyDottedNameTreePyImportFromTree. module()PyDottedNameTreePyDecoratorTree. name()Methods in org.sonar.python.api.tree with parameters of type PyDottedNameTree Modifier and Type Method Description voidPyTreeVisitor. visitDottedName(PyDottedNameTree pyDottedNameTree) -
Uses of PyDottedNameTree in org.sonar.python.tree
Classes in org.sonar.python.tree that implement PyDottedNameTree Modifier and Type Class Description classPyDottedNameTreeImplMethods in org.sonar.python.tree that return PyDottedNameTree Modifier and Type Method Description PyDottedNameTreePyAliasedNameTreeImpl. dottedName()PyDottedNameTreePyImportFromTreeImpl. module()PyDottedNameTreePyDecoratorTreeImpl. name()Methods in org.sonar.python.tree with parameters of type PyDottedNameTree Modifier and Type Method Description voidBaseTreeVisitor. visitDottedName(PyDottedNameTree pyDottedNameTree)Constructors in org.sonar.python.tree with parameters of type PyDottedNameTree Constructor Description PyAliasedNameTreeImpl(com.sonar.sslr.api.AstNode astNode, com.sonar.sslr.api.Token asKeyword, PyDottedNameTree dottedName, PyNameTree alias)PyDecoratorTreeImpl(com.sonar.sslr.api.AstNode astNode, com.sonar.sslr.api.Token atToken, PyDottedNameTree dottedName, com.sonar.sslr.api.AstNode lPar, PyArgListTree argListTree, com.sonar.sslr.api.AstNode rPar)PyImportFromTreeImpl(com.sonar.sslr.api.AstNode astNode, com.sonar.sslr.api.Token fromKeyword, List<com.sonar.sslr.api.Token> dottedPrefixForModule, PyDottedNameTree moduleName, com.sonar.sslr.api.Token importKeyword, List<PyAliasedNameTree> aliasedImportNames, boolean isWildcardImport)
-