mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-01 05:15:43 +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.
|
* @return the binary contents.
|
||||||
*/
|
*/
|
||||||
InputStream getContents();
|
InputStream getContents();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the binary parser
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
IBinaryParser getBinaryParser();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -208,6 +214,12 @@ public interface IBinaryParser extends IAdaptable {
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
int getLineNumber(long offset);
|
int getLineNumber(long offset);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the binary object this symbol is from.
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
IBinaryObject getBinarObject();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue