Example usage for org.eclipse.jdt.internal.core UserLibraryManager removeUserLibrary

List of usage examples for org.eclipse.jdt.internal.core UserLibraryManager removeUserLibrary

Introduction

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

Prototype

public void removeUserLibrary(String libName) 

Source Link

Usage

From source file:net.rim.ejde.internal.util.WorkspaceDependencyUtils.java

License:Open Source License

/**
 *
 *//*from  w  w w  . j  a va  2 s.co m*/
static public void removeUserLibrary(String userLibrary) {
    UserLibraryManager userLibMgr = JavaModelManager.getUserLibraryManager();

    if (null != userLibrary) {
        userLibMgr.removeUserLibrary(userLibrary);
    }
}