mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-30 21:55:31 +02:00
added some missing method that probably should be there like
getBinaryObject from Symbol and getBinaryParser from IBinaryObject
This commit is contained in:
parent
6f08973e2d
commit
6bf1fa6737
1 changed files with 12 additions and 0 deletions
|
@ -66,6 +66,12 @@ public interface IBinaryParser extends IAdaptable {
|
|||
* @return the binary contents.
|
||||
*/
|
||||
InputStream getContents();
|
||||
|
||||
/**
|
||||
* Return the binary parser
|
||||
* @return
|
||||
*/
|
||||
IBinaryParser getBinaryParser();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -208,6 +214,12 @@ public interface IBinaryParser extends IAdaptable {
|
|||
* @return
|
||||
*/
|
||||
int getLineNumber(long offset);
|
||||
|
||||
/**
|
||||
* Return the binary object this symbol is from.
|
||||
* @return
|
||||
*/
|
||||
IBinaryObject getBinarObject();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue