From 6bf1fa6737cdd2c4e6f40075ea248ef208e61975 Mon Sep 17 00:00:00 2001 From: David Inglis Date: Thu, 15 Jul 2004 17:25:12 +0000 Subject: [PATCH] added some missing method that probably should be there like getBinaryObject from Symbol and getBinaryParser from IBinaryObject --- .../src/org/eclipse/cdt/core/IBinaryParser.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java index c24e69cb128..cce0534e35d 100644 --- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java +++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/IBinaryParser.java @@ -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(); } /**