Example usage for org.eclipse.jdt.internal.compiler.lookup SyntheticMethodBinding subclass-usage

List of usage examples for org.eclipse.jdt.internal.compiler.lookup SyntheticMethodBinding subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.lookup SyntheticMethodBinding subclass-usage.

Usage

From source file org.eclipse.objectteams.otdt.internal.core.compiler.lookup.SyntheticOTMethodBinding.java

public abstract class SyntheticOTMethodBinding extends SyntheticMethodBinding {

    public SyntheticOTMethodBinding(SourceTypeBinding declaringClass, int modifiers, char[] selector,
            TypeBinding[] parameters, TypeBinding returnType) {
        super(declaringClass, modifiers, selector, parameters, returnType);
    }

From source file org.eclipse.objectteams.otdt.internal.core.compiler.lookup.SyntheticOTTargetMethod.java

/**
 * A synthetic method binding, which used as an invocation target needs to
 * influence code generation.
 * 
 * @since 2.3.1
 */