Uses of Interface
org.jd.core.v1.model.javasyntax.statement.BaseStatement
-
-
Uses of BaseStatement in org.jd.core.v1.model.javasyntax
Methods in org.jd.core.v1.model.javasyntax with parameters of type BaseStatement Modifier and Type Method Description protected 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 BaseStatement Modifier and Type Field Description protected 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 BaseStatement Modifier and Type Method Description BaseStatement
ConstructorDeclaration. getStatements()
BaseStatement
InstanceInitializerDeclaration. getStatements()
BaseStatement
MethodDeclaration. getStatements()
BaseStatement
StaticInitializerDeclaration. getStatements()
Constructors in org.jd.core.v1.model.javasyntax.declaration with parameters of type BaseStatement Constructor Description ConstructorDeclaration(int flags, BaseFormalParameter formalParameters, java.lang.String descriptor, BaseStatement statements)
ConstructorDeclaration(BaseAnnotationReference annotationReferences, int flags, BaseTypeParameter typeParameters, BaseFormalParameter formalParameters, BaseType exceptionTypes, java.lang.String descriptor, BaseStatement statements)
InstanceInitializerDeclaration(java.lang.String descriptor, BaseStatement statements)
MethodDeclaration(int flags, java.lang.String name, Type returnedType, java.lang.String descriptor, BaseStatement statements)
MethodDeclaration(int flags, java.lang.String name, Type returnedType, BaseFormalParameter formalParameters, java.lang.String descriptor, BaseStatement statements)
MethodDeclaration(BaseAnnotationReference annotationReferences, int flags, java.lang.String name, BaseTypeParameter typeParameters, Type returnedType, BaseFormalParameter formalParameters, BaseType exceptionTypes, java.lang.String descriptor, BaseStatement statements, ElementValue defaultAnnotationValue)
StaticInitializerDeclaration(java.lang.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 BaseStatement Modifier and Type Field Description protected BaseStatement
AbstractLambdaExpression. statements
Methods in org.jd.core.v1.model.javasyntax.expression that return BaseStatement Modifier and Type Method Description BaseStatement
AbstractLambdaExpression. getStatements()
Constructors in org.jd.core.v1.model.javasyntax.expression with parameters of type BaseStatement Constructor Description AbstractLambdaExpression(int lineNumber, Type type, BaseStatement statements)
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, java.util.List<java.lang.String> parameters, BaseStatement statements)
LambdaIdentifiersExpression(Type type, Type returnedType, java.util.List<java.lang.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.statement Modifier and Type Interface Description interface
Statement
static interface
SwitchStatement.Label
Classes in org.jd.core.v1.model.javasyntax.statement that implement BaseStatement Modifier and Type Class Description class
AssertStatement
class
BreakStatement
class
ByteCodeStatement
class
CommentStatement
class
ContinueStatement
class
DoWhileStatement
class
ExpressionStatement
class
ForEachStatement
class
ForStatement
class
IfElseStatement
class
IfStatement
class
LabelStatement
class
LambdaExpressionStatement
class
LocalVariableDeclarationStatement
class
ReturnExpressionStatement
class
ReturnStatement
class
Statements
class
SwitchStatement
static class
SwitchStatement.Block
static class
SwitchStatement.DefaultLabel
static class
SwitchStatement.ExpressionLabel
static class
SwitchStatement.LabelBlock
static class
SwitchStatement.MultiLabelsBlock
class
SynchronizedStatement
class
ThrowStatement
class
TryStatement
static class
TryStatement.CatchClause
static class
TryStatement.Resource
class
TypeDeclarationStatement
class
WhileStatement
Fields in org.jd.core.v1.model.javasyntax.statement declared as BaseStatement Modifier and Type Field Description protected 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 BaseStatement Modifier and Type Method Description BaseStatement
IfElseStatement. getElseStatements()
BaseStatement
TryStatement. getFinallyStatements()
BaseStatement
DoWhileStatement. getStatements()
BaseStatement
ForEachStatement. getStatements()
BaseStatement
ForStatement. getStatements()
BaseStatement
IfStatement. getStatements()
BaseStatement
SwitchStatement.Block. getStatements()
BaseStatement
SynchronizedStatement. getStatements()
BaseStatement
TryStatement.CatchClause. getStatements()
BaseStatement
WhileStatement. getStatements()
BaseStatement
TryStatement. getTryStatements()
Methods in org.jd.core.v1.model.javasyntax.statement with parameters of type BaseStatement Modifier and Type Method Description void
TryStatement. setFinallyStatements(BaseStatement finallyStatements)
void
TryStatement. setTryStatements(BaseStatement tryStatements)
-
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 BaseStatement Modifier and Type Method Description BaseStatement
ClassFileConstructorOrMethodDeclaration. getStatements()
Methods in org.jd.core.v1.service.converter.classfiletojavasyntax.model.javasyntax.declaration with parameters of type BaseStatement Modifier and Type Method Description void
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 BaseStatement Constructor Description ClassFileStaticInitializerDeclaration(ClassFileBodyDeclaration bodyDeclaration, ClassFile classFile, Method method, java.util.Map<java.lang.String,TypeArgument> bindings, java.util.Map<java.lang.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 BaseStatement Modifier and Type Class Description class
ClassFileBreakContinueStatement
class
ClassFileForEachStatement
class
ClassFileForStatement
class
ClassFileMonitorEnterStatement
class
ClassFileMonitorExitStatement
class
ClassFileTryStatement
static class
ClassFileTryStatement.CatchClause
Constructors in org.jd.core.v1.service.converter.classfiletojavasyntax.model.javasyntax.statement with parameters of type BaseStatement Constructor Description CatchClause(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 BaseStatement Modifier and Type Method Description private static BaseStatement
ByteCodeParser. prepareLambdaStatements(BaseStatement baseStatement)
Methods in org.jd.core.v1.service.converter.classfiletojavasyntax.util with parameters of type BaseStatement Modifier and Type Method Description private 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 BaseStatement Modifier and Type Method Description protected BaseStatement
InitInnerClassVisitor.UpdateNewExpressionVisitor.AddLocalClassDeclarationVisitor. addLocalClassDeclarations(BaseStatement statements)
Methods in org.jd.core.v1.service.converter.classfiletojavasyntax.visitor with parameters of type BaseStatement Modifier and Type Method Description protected 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 BaseStatement Modifier and Type Method Description protected void
StatementVisitor. visitElseStatements(BaseStatement elseStatements, StartStatementsBlockFragment.Group group)
protected void
ExpressionVisitor. visitLambdaBody(BaseStatement statementList)
protected void
StatementVisitor. visitLoopStatements(BaseStatement statements)
-