Uses of Interface
org.sonar.python.api.tree.PyElseStatementTree
-
Packages that use PyElseStatementTree Package Description org.sonar.python.api.tree org.sonar.python.metrics org.sonar.python.tree -
-
Uses of PyElseStatementTree in org.sonar.python.api.tree
Methods in org.sonar.python.api.tree that return PyElseStatementTree Modifier and Type Method Description PyElseStatementTreePyIfStatementTree. elseBranch()PyElseStatementTreePyTryStatementTree. elseClause()Methods in org.sonar.python.api.tree with parameters of type PyElseStatementTree Modifier and Type Method Description voidPyTreeVisitor. visitElseStatement(PyElseStatementTree pyElseStatementTree) -
Uses of PyElseStatementTree in org.sonar.python.metrics
Methods in org.sonar.python.metrics with parameters of type PyElseStatementTree Modifier and Type Method Description voidCognitiveComplexityVisitor. visitElseStatement(PyElseStatementTree pyElseStatementTree) -
Uses of PyElseStatementTree in org.sonar.python.tree
Classes in org.sonar.python.tree that implement PyElseStatementTree Modifier and Type Class Description classPyElseStatementTreeImplMethods in org.sonar.python.tree that return PyElseStatementTree Modifier and Type Method Description PyElseStatementTreePyIfStatementTreeImpl. elseBranch()PyElseStatementTreePyTryStatementTreeImpl. elseClause()Methods in org.sonar.python.tree with parameters of type PyElseStatementTree Modifier and Type Method Description voidBaseTreeVisitor. visitElseStatement(PyElseStatementTree pyElseStatementTree)Constructors in org.sonar.python.tree with parameters of type PyElseStatementTree Constructor Description PyIfStatementTreeImpl(com.sonar.sslr.api.Token ifKeyword, PyExpressionTree condition, PyStatementListTree statements, List<PyIfStatementTree> elifBranches, PyElseStatementTree elseStatement)If statement constructorPyTryStatementTreeImpl(com.sonar.sslr.api.AstNode astNode, com.sonar.sslr.api.Token tryKeyword, PyStatementListTree tryBody, List<PyExceptClauseTree> exceptClauses, PyFinallyClauseTree finallyClause, PyElseStatementTree elseStatement)
-