Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Schorn2008-04-09 11:35:52 +0000
committerMarkus Schorn2008-04-09 11:35:52 +0000
commitb5ad408a60bf817898f5e8ef8742c0d637625ea5 (patch)
treec9f6ed523a7ca65a0b9afc271c2116bdbe108272 /core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/parser/SOMBinaryObject.java
parenta14a63c06081e95010c4c7b56ee169279c6465e9 (diff)
downloadorg.eclipse.cdt-b5ad408a60bf817898f5e8ef8742c0d637625ea5.tar.gz
org.eclipse.cdt-b5ad408a60bf817898f5e8ef8742c0d637625ea5.tar.xz
org.eclipse.cdt-b5ad408a60bf817898f5e8ef8742c0d637625ea5.zip
Team shared warning levels for core-plugin, fixed warnings.
Diffstat (limited to 'core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/parser/SOMBinaryObject.java')
-rw-r--r--core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/parser/SOMBinaryObject.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/parser/SOMBinaryObject.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/parser/SOMBinaryObject.java
index 8a564212b48..39fd2399c50 100644
--- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/parser/SOMBinaryObject.java
+++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/som/parser/SOMBinaryObject.java
@@ -73,6 +73,7 @@ public class SOMBinaryObject extends BinaryObjectAdapter {
*
* @see org.eclipse.cdt.core.IBinaryParser.IBinaryObject#getSymbols()
*/
+ @Override
public ISymbol[] getSymbols() {
if (hasChanged() || symbols == null) {
try {
@@ -89,6 +90,7 @@ public class SOMBinaryObject extends BinaryObjectAdapter {
*
* @see org.eclipse.cdt.utils.BinaryObjectAdapter#getBinaryObjectInfo()
*/
+ @Override
protected BinaryObjectInfo getBinaryObjectInfo() {
if (hasChanged() || info == null) {
try {
@@ -105,6 +107,7 @@ public class SOMBinaryObject extends BinaryObjectAdapter {
*
* @see org.eclipse.cdt.utils.BinaryObjectAdapter#getName()
*/
+ @Override
public String getName() {
if (header != null) {
return header.getObjectName();
@@ -117,6 +120,7 @@ public class SOMBinaryObject extends BinaryObjectAdapter {
*
* @see org.eclipse.cdt.core.IBinaryParser.IBinaryFile#getContents()
*/
+ @Override
public InputStream getContents() throws IOException {
InputStream stream = null;
if (getPath() != null && header != null) {
@@ -309,6 +313,7 @@ public class SOMBinaryObject extends BinaryObjectAdapter {
*
* @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
*/
+ @Override
public Object getAdapter(Class adapter) {
if (adapter == Addr2line.class) {
return getAddr2line(false);
@@ -321,6 +326,7 @@ public class SOMBinaryObject extends BinaryObjectAdapter {
/* (non-Javadoc)
* @see org.eclipse.cdt.utils.BinaryObjectAdapter#getAddressFactory()
*/
+ @Override
public IAddressFactory getAddressFactory() {
if (addressFactory == null) {
addressFactory = new Addr32Factory();

Back to the top