Package org.eclipse.core.runtime

Examples of org.eclipse.core.runtime.ILibrary


        ILibrary[] libraries = theDescriptor.getRuntimeLibraries();
       
        for (int i = 0; i < libraries.length; i++)
        {
         
            ILibrary currentLib = libraries[i];
            //CactusPlugin.log("Current library "+currentLib.getPath().toString());
            if (thePackagePrefix == null
                || isContained(thePackagePrefix, currentLib))
            {
                try
                {
                    URL url = new URL(root, currentLib.getPath().toString());
                    result.add(
                        LibraryHelper.getIClasspathEntry(
                            Platform.asLocalURL(url).getPath()));
                }
                catch (IOException e)
View Full Code Here

TOP

Related Classes of org.eclipse.core.runtime.ILibrary

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.