Uses of Interface
org.sonar.plugins.python.api.tree.Decorator
-
Packages that use Decorator Package Description org.sonar.plugins.python.api.tree org.sonar.python.tree -
-
Uses of Decorator in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return types with arguments of type Decorator Modifier and Type Method Description List<Decorator>ClassDef. decorators()List<Decorator>FunctionDef. decorators()Methods in org.sonar.plugins.python.api.tree with parameters of type Decorator Modifier and Type Method Description voidBaseTreeVisitor. visitDecorator(Decorator decorator)voidTreeVisitor. visitDecorator(Decorator decorator) -
Uses of Decorator in org.sonar.python.tree
Classes in org.sonar.python.tree that implement Decorator Modifier and Type Class Description classDecoratorImplMethods in org.sonar.python.tree that return types with arguments of type Decorator Modifier and Type Method Description List<Decorator>ClassDefImpl. decorators()List<Decorator>FunctionDefImpl. decorators()Constructor parameters in org.sonar.python.tree with type arguments of type Decorator Constructor Description ClassDefImpl(List<Decorator> decorators, Token classKeyword, Name name, Token leftPar, ArgList args, Token rightPar, Token colon, Token newLine, Token indent, StatementList body, Token dedent, StringLiteral docstring)FunctionDefImpl(List<Decorator> decorators, Token asyncKeyword, Token defKeyword, Name name, Token leftPar, ParameterList parameters, Token rightPar, TypeAnnotation returnType, Token colon, Token newLine, Token indent, StatementList body, Token dedent, boolean isMethodDefinition, StringLiteral docstring)
-