Example usage for org.eclipse.jdt.apt.core.env Phase RECONCILE

List of usage examples for org.eclipse.jdt.apt.core.env Phase RECONCILE

Introduction

In this page you can find the example usage for org.eclipse.jdt.apt.core.env Phase RECONCILE.

Prototype

Phase RECONCILE

To view the source code for org.eclipse.jdt.apt.core.env Phase RECONCILE.

Click Source Link

Document

During Reconcile phase

Usage

From source file:com.farata.dto2extjs.asap.env.EclipseEnvironmentInspector.java

License:MIT License

public boolean isReconciliation(final AnnotationProcessorEnvironment env) {
    if (env instanceof EclipseAnnotationProcessorEnvironment) {
        final EclipseAnnotationProcessorEnvironment eenv = (EclipseAnnotationProcessorEnvironment) env;
        final Phase phase = eenv.getPhase();
        return Phase.RECONCILE == phase;
    } else//from ww  w . j av a  2s  . co m
        return false;
}