1
0
Fork 0
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:
David Inglis 2004-07-15 17:25:12 +00:00
parent 6f08973e2d
commit 6bf1fa6737

View file

@ -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();
}
/**