Package org.eclipse.cdt.core
Interface ISymbolReader
-
- All Known Implementing Classes:
CodeViewReader,DwarfReader,StabsReader
public interface ISymbolReaderA reader that's able to decipher debug symbol formats. This initial version only returns a list of source files.- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]getSourceFiles()java.lang.String[]getSourceFiles(org.eclipse.core.runtime.IProgressMonitor monitor)Gets the source files from this symbol reader.
-
-
-
Method Detail
-
getSourceFiles
java.lang.String[] getSourceFiles()
-
getSourceFiles
java.lang.String[] getSourceFiles(org.eclipse.core.runtime.IProgressMonitor monitor)
Gets the source files from this symbol reader.- Parameters:
monitor- a progress monitor since this may be a lengthly operation- Returns:
- an array of path names to the source files
- Since:
- 5.2
-
-