Package org.eclipse.debug.core.sourcelookup.containers

Examples of org.eclipse.debug.core.sourcelookup.containers.ArchiveSourceContainer


                            result.add(new JavaProjectSourceContainer(targetJavaProj));
                        }
                    } else if (runbundle.getType() == TYPE.REPO) {
                        IPath bundlePath = Central.toPath(runbundle.getFile());
                        IFile bundleFile = ResourcesPlugin.getWorkspace().getRoot().getFile(bundlePath);
                        ArchiveSourceContainer tempArchiveCont = new ArchiveSourceContainer(bundleFile, false);
                        result.add(tempArchiveCont);
                    }
                }
            } catch (Exception e) {
                logger.logError("Error querying Bnd Dependency source containers.", e);
View Full Code Here


          } else {
            result.add(new DirectorySourceContainer(sc.getPackageFragmentRoot().getPath(), false));
          }
        } else {
          if (sc.getPackageFragmentRoot().isArchive()) {
            result.add(new ArchiveSourceContainer((IFile) sc.getPackageFragmentRoot().getCorrespondingResource(), false));
          } else {
            result.add(new FolderSourceContainer((IContainer) sc.getPackageFragmentRoot().getCorrespondingResource(), false));
          }
        }
      } else if (sourceContainer instanceof ExternalArchiveSourceContainer) {
View Full Code Here

TOP

Related Classes of org.eclipse.debug.core.sourcelookup.containers.ArchiveSourceContainer

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.