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

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


    return wrapper.lookup(resource);
  }

  private static ContainerWrapper wrapNonVirtualContainer(ISourceContainer container) {
    if (container instanceof ContainerSourceContainer) {
      final ContainerSourceContainer containerSourceContainer =
          (ContainerSourceContainer) container;
      return new ContainerWrapper() {
        @Override
        public String lookup(IFile resource) {
          return lookupInResourceContainer(resource, containerSourceContainer.getContainer());
        }
      };
    } else if (container instanceof WorkspaceSourceContainer) {
      return new ContainerWrapper() {
        @Override
View Full Code Here

TOP

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

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.