Uses of Interface
org.jd.core.v1.model.javasyntax.statement.BaseStatement
Packages that use BaseStatement
Package
Description
-
Uses of BaseStatement in org.jd.core.v1.model.javasyntax
Methods in org.jd.core.v1.model.javasyntax with parameters of type BaseStatementModifier and TypeMethodDescriptionprotected void
AbstractJavaSyntaxVisitor.safeAccept
(BaseStatement list) -
Uses of BaseStatement in org.jd.core.v1.model.javasyntax.declaration
Fields in org.jd.core.v1.model.javasyntax.declaration declared as BaseStatementModifier and TypeFieldDescriptionprotected BaseStatement
ConstructorDeclaration.statements
protected BaseStatement
InstanceInitializerDeclaration.statements
protected BaseStatement
MethodDeclaration.statements
protected BaseStatement
StaticInitializerDeclaration.statements
Methods in org.jd.core.v1.model.javasyntax.declaration that return BaseStatementModifier and TypeMethodDescriptionConstructorDeclaration.getStatements()
InstanceInitializerDeclaration.getStatements()
MethodDeclaration.getStatements()
StaticInitializerDeclaration.getStatements()
Constructors in org.jd.core.v1.model.javasyntax.declaration with parameters of type BaseStatementModifierConstructorDescriptionConstructorDeclaration
(int flags, BaseFormalParameter formalParameters, String descriptor, BaseStatement statements) ConstructorDeclaration
(BaseAnnotationReference annotationReferences, int flags, BaseTypeParameter typeParameters, BaseFormalParameter formalParameters, BaseType exceptionTypes, String descriptor, BaseStatement statements) InstanceInitializerDeclaration
(String descriptor, BaseStatement statements) MethodDeclaration
(int flags, String name, Type returnedType, String descriptor, BaseStatement statements) MethodDeclaration
(int flags, String name, Type returnedType, BaseFormalParameter formalParameters, String descriptor, BaseStatement statements) MethodDeclaration
(BaseAnnotationReference annotationReferences, int flags, String name, BaseTypeParameter typeParameters, Type returnedType, BaseFormalParameter formalParameters, BaseType exceptionTypes, String descriptor, BaseStatement statements, ElementValue defaultAnnotationValue) StaticInitializerDeclaration
(String descriptor, BaseStatement statements) -
Uses of BaseStatement in org.jd.core.v1.model.javasyntax.expression
Fields in org.jd.core.v1.model.javasyntax.expression declared as BaseStatementMethods in org.jd.core.v1.model.javasyntax.expression that return BaseStatementConstructors in org.jd.core.v1.model.javasyntax.expression with parameters of type BaseStatementModifierConstructorDescriptionprotected
AbstractLambdaExpression
(int lineNumber, Type type, BaseStatement statements) protected
AbstractLambdaExpression
(Type type, BaseStatement statements) LambdaFormalParametersExpression
(int lineNumber, Type type, BaseFormalParameter parameters, BaseStatement statements) LambdaFormalParametersExpression
(Type type, BaseFormalParameter parameters, BaseStatement statements) LambdaIdentifiersExpression
(int lineNumber, Type type, Type returnedType, List<String> parameters, BaseStatement statements) LambdaIdentifiersExpression
(Type type, Type returnedType, List<String> parameters, BaseStatement statements) -
Uses of BaseStatement in org.jd.core.v1.model.javasyntax.statement
Subinterfaces of BaseStatement in org.jd.core.v1.model.javasyntax.statementClasses in org.jd.core.v1.model.javasyntax.statement that implement BaseStatementModifier and TypeClassDescriptionclass
class
class
class
class
class
class
class
class
class
class
class
class
class
class
class
class
class
static class
static class
static class
static class
static class
class
class
class
static class
static class
class
class
Fields in org.jd.core.v1.model.javasyntax.statement declared as BaseStatementModifier and TypeFieldDescriptionprotected BaseStatement
IfElseStatement.elseStatements
protected BaseStatement
TryStatement.finallyStatements
protected BaseStatement
DoWhileStatement.statements
protected BaseStatement
ForEachStatement.statements
protected BaseStatement
ForStatement.statements
protected BaseStatement
IfStatement.statements
protected BaseStatement
SwitchStatement.Block.statements
protected BaseStatement
SynchronizedStatement.statements
protected BaseStatement
TryStatement.CatchClause.statements
protected BaseStatement
WhileStatement.statements
protected BaseStatement
TryStatement.tryStatements
Methods in org.jd.core.v1.model.javasyntax.statement that return BaseStatementModifier and TypeMethodDescriptionIfElseStatement.getElseStatements()
TryStatement.getFinallyStatements()
DoWhileStatement.getStatements()
ForEachStatement.getStatements()
ForStatement.getStatements()
IfStatement.getStatements()
SwitchStatement.Block.getStatements()
SynchronizedStatement.getStatements()
TryStatement.CatchClause.getStatements()
WhileStatement.getStatements()
TryStatement.getTryStatements()
Methods in org.jd.core.v1.model.javasyntax.statement with parameters of type BaseStatementModifier and TypeMethodDescriptionvoid
TryStatement.setFinallyStatements
(BaseStatement finallyStatements) void
TryStatement.setTryStatements
(BaseStatement tryStatements) Constructors in org.jd.core.v1.model.javasyntax.statement with parameters of type BaseStatementModifierConstructorDescriptionprotected
Block
(BaseStatement statements) CatchClause
(int lineNumber, ObjectType type, String name, BaseStatement statements) DoWhileStatement
(Expression condition, BaseStatement statements) ForEachStatement
(Type type, String name, Expression expression, BaseStatement statements) ForStatement
(LocalVariableDeclaration declaration, Expression condition, BaseExpression update, BaseStatement statements) ForStatement
(BaseExpression init, Expression condition, BaseExpression update, BaseStatement statements) IfElseStatement
(Expression condition, BaseStatement statement, BaseStatement elseStatements) IfStatement
(Expression condition, BaseStatement statements) LabelBlock
(SwitchStatement.Label label, BaseStatement statements) MultiLabelsBlock
(List<SwitchStatement.Label> labels, BaseStatement statements) SynchronizedStatement
(Expression monitor, BaseStatement statements) TryStatement
(BaseStatement tryStatements, DefaultList<TryStatement.CatchClause> catchClauses, BaseStatement finallyStatements) TryStatement
(DefaultList<TryStatement.Resource> resources, BaseStatement tryStatements, DefaultList<TryStatement.CatchClause> catchClauses, BaseStatement finallyStatements) WhileStatement
(Expression condition, BaseStatement statements) -
Uses of BaseStatement in org.jd.core.v1.service.converter.classfiletojavasyntax.model.javasyntax.declaration
Methods in org.jd.core.v1.service.converter.classfiletojavasyntax.model.javasyntax.declaration that return BaseStatementMethods in org.jd.core.v1.service.converter.classfiletojavasyntax.model.javasyntax.declaration with parameters of type BaseStatementModifier and TypeMethodDescriptionvoid
ClassFileConstructorDeclaration.setStatements
(BaseStatement statements) void
ClassFileConstructorOrMethodDeclaration.setStatements
(BaseStatement statements) void
ClassFileMethodDeclaration.setStatements
(BaseStatement statements) void
ClassFileStaticInitializerDeclaration.setStatements
(BaseStatement statements) Constructors in org.jd.core.v1.service.converter.classfiletojavasyntax.model.javasyntax.declaration with parameters of type BaseStatementModifierConstructorDescriptionClassFileStaticInitializerDeclaration
(ClassFileBodyDeclaration bodyDeclaration, ClassFile classFile, Method method, Map<String, TypeArgument> bindings, Map<String, BaseType> typeBounds, int firstLineNumber, BaseStatement statements) -
Uses of BaseStatement in org.jd.core.v1.service.converter.classfiletojavasyntax.model.javasyntax.statement
Classes in org.jd.core.v1.service.converter.classfiletojavasyntax.model.javasyntax.statement that implement BaseStatementModifier and TypeClassDescriptionclass
class
class
class
class
class
static class
Constructors in org.jd.core.v1.service.converter.classfiletojavasyntax.model.javasyntax.statement with parameters of type BaseStatementModifierConstructorDescriptionCatchClause
(int lineNumber, ObjectType type, AbstractLocalVariable localVariable, BaseStatement statements) ClassFileForEachStatement
(AbstractLocalVariable localVariable, Expression expression, BaseStatement statements) ClassFileForStatement
(int fromOffset, int toOffset, BaseExpression init, Expression condition, BaseExpression update, BaseStatement statements) ClassFileTryStatement
(BaseStatement tryStatements, DefaultList<TryStatement.CatchClause> catchClauses, BaseStatement finallyStatements, boolean jsr, boolean eclipse) ClassFileTryStatement
(DefaultList<TryStatement.Resource> resources, BaseStatement tryStatements, DefaultList<TryStatement.CatchClause> catchClauses, BaseStatement finallyStatements, boolean jsr, boolean eclipse) -
Uses of BaseStatement in org.jd.core.v1.service.converter.classfiletojavasyntax.util
Methods in org.jd.core.v1.service.converter.classfiletojavasyntax.util that return BaseStatementModifier and TypeMethodDescriptionprivate static BaseStatement
ByteCodeParser.prepareLambdaStatements
(BaseStatement baseStatement) Methods in org.jd.core.v1.service.converter.classfiletojavasyntax.util with parameters of type BaseStatementModifier and TypeMethodDescriptionprivate static BaseStatement
ByteCodeParser.prepareLambdaStatements
(BaseStatement baseStatement) -
Uses of BaseStatement in org.jd.core.v1.service.converter.classfiletojavasyntax.visitor
Methods in org.jd.core.v1.service.converter.classfiletojavasyntax.visitor that return BaseStatementModifier and TypeMethodDescriptionprotected BaseStatement
InitInnerClassVisitor.UpdateNewExpressionVisitor.AddLocalClassDeclarationVisitor.addLocalClassDeclarations
(BaseStatement statements) Methods in org.jd.core.v1.service.converter.classfiletojavasyntax.visitor with parameters of type BaseStatementModifier and TypeMethodDescriptionprotected BaseStatement
InitInnerClassVisitor.UpdateNewExpressionVisitor.AddLocalClassDeclarationVisitor.addLocalClassDeclarations
(BaseStatement statements) protected void
InitStaticFieldVisitor.addStaticInitializerDeclaration
(ClassFileStaticInitializerDeclaration sid, int lineNumber, BaseStatement statements) protected int
InitStaticFieldVisitor.getFirstLineNumber
(BaseStatement baseStatement) protected void
MergeTryWithResourcesStatementVisitor.safeAccept
(BaseStatement list) protected void
RemoveFinallyStatementsVisitor.safeAccept
(BaseStatement list) -
Uses of BaseStatement in org.jd.core.v1.service.fragmenter.javasyntaxtojavafragment.visitor
Methods in org.jd.core.v1.service.fragmenter.javasyntaxtojavafragment.visitor with parameters of type BaseStatementModifier and TypeMethodDescriptionprotected void
StatementVisitor.visitElseStatements
(BaseStatement elseStatements, StartStatementsBlockFragment.Group group) protected void
ExpressionVisitor.visitLambdaBody
(BaseStatement statementList) protected void
StatementVisitor.visitLoopStatements
(BaseStatement statements)