1 11 package org.eclipse.debug.core.sourcelookup; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.core.runtime.IAdaptable; 15 16 35 public interface ISourceContainer extends IAdaptable { 36 37 43 public void init(ISourceLookupDirector director); 44 45 64 public Object [] findSourceElements(String name) throws CoreException; 65 66 72 public String getName(); 73 74 84 public ISourceContainer[] getSourceContainers() throws CoreException; 85 86 93 public boolean isComposite(); 94 95 100 public ISourceContainerType getType(); 101 102 106 public void dispose(); 107 108 } 109 | Popular Tags |