Example usage for org.eclipse.jdt.internal.compiler.problem ProblemReporter abstractMethodMustBeImplemented

List of usage examples for org.eclipse.jdt.internal.compiler.problem ProblemReporter abstractMethodMustBeImplemented

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.problem ProblemReporter abstractMethodMustBeImplemented.

Prototype

public void abstractMethodMustBeImplemented(SourceTypeBinding type, MethodBinding abstractMethod) 

Source Link

Usage

From source file:lombok.eclipse.agent.PatchAutoGenMethodStub.java

License:Open Source License

public static void abstractMethodMustBeImplemented(final ProblemReporter problemReporter,
        final SourceTypeBinding type, final MethodBinding abstractMethod) {
    if (ISSUE_WAS_FIXED.get()) {
        ISSUE_WAS_FIXED.set(false);/*ww  w  .j ava2s .co  m*/
    } else {
        problemReporter.abstractMethodMustBeImplemented(type, abstractMethod);
    }
}