Example usage for org.eclipse.jdt.core.dom IVariableBinding interface-usage

List of usage examples for org.eclipse.jdt.core.dom IVariableBinding interface-usage

Introduction

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

Usage

From source file com.google.devtools.j2cpp.types.GeneratedVariableBinding.java

/**
 * Binding class for variables and parameters created during translation.
 *
 * @author Tom Ball
 */
public class GeneratedVariableBinding implements IVariableBinding {

From source file com.google.devtools.j2cpp.types.IOSVariableBinding.java

/**
 * IOSVariableBinding: synthetic binding for an iOS variable or parameter.
 *
 * @author Tom Ball
 */
public class IOSVariableBinding implements IVariableBinding {

From source file com.google.devtools.j2objc.jdt.JdtVariableBinding.java

/**
 * Wrapper class around IVariableBinding.
 */
public class JdtVariableBinding extends JdtBinding implements IVariableBinding {
    private JdtVariableBinding declaration;
    private JdtTypeBinding type;

From source file com.google.devtools.j2objc.types.ClassVariableBinding.java

/**
 * Binding class for variables defined in external classes.
 *
 * @see ClassTypeBinding
 * @author Tom Ball
 */

From source file com.google.devtools.j2objc.types.GeneratedVariableBinding.java

/**
 * Binding class for variables and parameters created during translation.
 *
 * @author Tom Ball
 */
public class GeneratedVariableBinding extends AbstractBinding implements IVariableBinding {

From source file com.google.devtools.j2objc.types.IOSVariableBinding.java

/**
 * IOSVariableBinding: synthetic binding for an iOS variable or parameter.
 *
 * @author Tom Ball
 */
public class IOSVariableBinding implements IVariableBinding {

From source file com.j2swift.types.GeneratedVariableBinding.java

/**
 * Binding class for variables and parameters created during translation.
 *
 * @author Tom Ball
 */
public class GeneratedVariableBinding extends AbstractBinding implements IVariableBinding {

From source file org.eclipse.wb.internal.core.utils.ast.binding.DesignerVariableBinding.java

/**
 * Implementation of {@link IVariableBinding}.
 *
 * We use our implementations of bindings because standard ones reference objects from internal
 * compiler's AST. This is not problem for Eclipse itself, but we parse very often, for every change
 * in editor, so we can end up with a lot of referenced objects.