Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinary.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinary.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinary.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinary.java
index 8c88d2895ab..feb502bb3b0 100644
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinary.java
+++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinary.java
@@ -14,11 +14,10 @@
*******************************************************************************/
package org.eclipse.cdt.core.model;
-
/**
* Represents a Binary file, for example an ELF executable.
* An ELF parser will inspect the binary.
- *
+ *
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
@@ -33,10 +32,10 @@ public interface IBinary extends ICElement, IParent, IOpenable {
public boolean isObject();
public boolean isSharedLib();
-
+
public boolean isCore();
- public String [] getNeededSharedLibs();
+ public String[] getNeededSharedLibs();
public String getSoname();
@@ -47,13 +46,13 @@ public interface IBinary extends ICElement, IParent, IOpenable {
public long getData();
public long getBSS();
-
+
public boolean isLittleEndian();
/**
* Determines whether this binary is part of the binary container. The binary container collects
* binaries from a project. This is typically used to presents the executables of a project under
- * a common node in the CView or ProjectNavigator.
+ * a common node in the CView or ProjectNavigator.
*/
public boolean showInBinaryContainer();
//public IAddressFactory getAddressFactory();

Back to the top