Example usage for org.eclipse.jdt.internal.compiler.classfmt ClassFileConstants AccSuper

List of usage examples for org.eclipse.jdt.internal.compiler.classfmt ClassFileConstants AccSuper

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.classfmt ClassFileConstants AccSuper.

Prototype

int AccSuper

To view the source code for org.eclipse.jdt.internal.compiler.classfmt ClassFileConstants AccSuper.

Click Source Link

Document

Other VM flags.

Usage

From source file:com.codenvy.ide.ext.java.server.internal.core.BinaryType.java

License:Open Source License

public int getFlags() throws JavaModelException {
    IBinaryType info = (IBinaryType) getElementInfo();
    return info.getModifiers() & ~ClassFileConstants.AccSuper;
}