Example usage for org.eclipse.jdt.core.dom Statement subclass-usage

List of usage examples for org.eclipse.jdt.core.dom Statement subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom Statement subclass-usage.

Usage

From source file com.google.devtools.j2objc.ast.ConstructorInvocation.java

/**
 * Node for a alternate constructor invocation. (i.e. "this(...);")
 */
public class ConstructorInvocation extends Statement {

    private IMethodBinding methodBinding = null;

From source file com.google.devtools.j2objc.ast.SuperConstructorInvocation.java

/**
 * Node for a super constructor invocation. (i.e. "super(...);")
 */
public class SuperConstructorInvocation extends Statement {

    private IMethodBinding methodBinding = null;

From source file com.google.devtools.j2objc.ast.VariableDeclarationStatement.java

/**
 * Node type for a local variable declaration.
 */
public class VariableDeclarationStatement extends Statement {

    private int modifiers = 0;

From source file com.j2swift.ast.ConstructorInvocation.java

/**
 * Node for a alternate constructor invocation. (i.e. "this(...);")
 */
public class ConstructorInvocation extends Statement {

    private IMethodBinding methodBinding = null;

From source file com.j2swift.ast.SuperConstructorInvocation.java

/**
 * Node for a super constructor invocation. (i.e. "super(...);")
 */
public class SuperConstructorInvocation extends Statement {

    private IMethodBinding methodBinding = null;

From source file com.j2swift.ast.VariableDeclarationStatement.java

/**
 * Node type for a local variable declaration.
 */
public class VariableDeclarationStatement extends Statement {

    private int modifiers = 0;