Example usage for org.aspectj.ajdt.internal.core.builder CompilerConfigurationChangeFlags INPATH_CHANGED

List of usage examples for org.aspectj.ajdt.internal.core.builder CompilerConfigurationChangeFlags INPATH_CHANGED

Introduction

In this page you can find the example usage for org.aspectj.ajdt.internal.core.builder CompilerConfigurationChangeFlags INPATH_CHANGED.

Prototype

int INPATH_CHANGED

To view the source code for org.aspectj.ajdt.internal.core.builder CompilerConfigurationChangeFlags INPATH_CHANGED.

Click Source Link

Usage

From source file:org.eclipse.ajdt.core.builder.AJBuilder.java

License:Open Source License

private boolean classpathChanged(IResourceDelta delta, CoreCompilerConfiguration compilerConfiguration) {
    if (delta.findMember(new Path(".classpath")) != null) {
        // we don't know exactly what has changed, so be conservative
        compilerConfiguration.configurationChanged(CompilerConfigurationChangeFlags.CLASSPATH_CHANGED
                | CompilerConfigurationChangeFlags.ASPECTPATH_CHANGED
                | CompilerConfigurationChangeFlags.INPATH_CHANGED
                | CompilerConfigurationChangeFlags.OUTPUTDESTINATIONS_CHANGED);
        return true;
    } else {/*  ww  w.  ja  va  2 s .  c  o  m*/
        return false;
    }
}