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

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

Introduction

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

Usage

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

/**
 * Superclass node for classes, enums and annotation declarations.
 */
public abstract class AbstractTypeDeclaration extends BodyDeclaration {

    private ITypeBinding typeBinding = null;

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

/**
 * Node for an annotation type member declaration.
 */
public class AnnotationTypeMemberDeclaration extends BodyDeclaration {

    private IMethodBinding methodBinding = null;

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

/**
 * Node for an enum constant.
 */
public class EnumConstantDeclaration extends BodyDeclaration {

    private IVariableBinding variableBinding = null;

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

/**
 * Node for a field declaration.
 */
public class FieldDeclaration extends BodyDeclaration {

    private ChildLink<Type> type = ChildLink.create(Type.class, this);

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

/**
 * Node type for a function declaration.
 */
public class FunctionDeclaration extends BodyDeclaration {

    private String name = null;

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

/**
 * Node type for a method declaration.
 */
public class MethodDeclaration extends BodyDeclaration {

    private IMethodBinding methodBinding = null;

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

/**
 * A native declaration. Contains string contents without any structural context
 * other than whether the content is for the header or implementation.
 */
public class NativeDeclaration extends BodyDeclaration {

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

/**
 * Superclass node for classes, enums and annotation declarations.
 */
public abstract class AbstractTypeDeclaration extends BodyDeclaration {

    private ITypeBinding typeBinding = null;

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

/**
 * Node for an annotation type member declaration.
 */
public class AnnotationTypeMemberDeclaration extends BodyDeclaration {

    private IMethodBinding methodBinding = null;

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

/**
 * Node for an enum constant.
 */
public class EnumConstantDeclaration extends BodyDeclaration {

    private IVariableBinding variableBinding = null;