Example usage for org.eclipse.jdt.internal.core ClassFileInfo removeBinaryChildren

List of usage examples for org.eclipse.jdt.internal.core ClassFileInfo removeBinaryChildren

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.core ClassFileInfo removeBinaryChildren.

Prototype

void removeBinaryChildren() throws JavaModelException 

Source Link

Document

Removes the binary children handles and remove their infos from the JavaModelManager's cache.

Usage

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

License:Open Source License

protected void closing(Object info) throws JavaModelException {
    ClassFileInfo cfi = getClassFileInfo();
    cfi.removeBinaryChildren();
}