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

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

Introduction

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

Usage

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

/**
 * Binding class for types created during translation.
 *
 * @author Keith Stanger
 */
public class GeneratedPackageBinding extends AbstractBinding implements IPackageBinding {

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

/**
 * Wrapper class around IPackageBinding.
 */
public class JdtPackageBinding extends JdtBinding implements IPackageBinding {

    protected JdtPackageBinding(IPackageBinding binding) {

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

/**
 * Binding class for types created during translation.
 *
 * @author Keith Stanger
 */
public class GeneratedPackageBinding extends AbstractBinding implements IPackageBinding {

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

/**
 * Binding class for types created during translation.
 *
 * @author Keith Stanger
 */
public class GeneratedPackageBinding extends AbstractBinding implements IPackageBinding {

From source file org.autorefactor.refactoring.PackageBindingStub.java

class PackageBindingStub implements IPackageBinding {
    private String packageName;

    PackageBindingStub(String packageName) {
        this.packageName = packageName;
    }

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

/**
 * Implementation of {@link IPackageBinding}.
 * 
 * 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.