Example usage for org.eclipse.jdt.core.util IClassFileReader FIELD_INFOS

List of usage examples for org.eclipse.jdt.core.util IClassFileReader FIELD_INFOS

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.util IClassFileReader FIELD_INFOS.

Prototype

int FIELD_INFOS

To view the source code for org.eclipse.jdt.core.util IClassFileReader FIELD_INFOS.

Click Source Link

Document

This value should be used to read the constant pool entries and the field infos of a .class file.

Usage

From source file:org.eclipse.jpt.common.eclipselink.core.internal.libval.EclipseLinkLibraryValidatorTools.java

License:Open Source License

private static IClassFileReader buildClassFileReader(IClasspathEntry entry) {
    return ToolFactory.createDefaultClassFileReader(entry.getPath().toFile().getAbsolutePath(),
            VERSION_CLASS_PATH, IClassFileReader.FIELD_INFOS);
}