Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinaryElement.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinaryElement.java19
1 files changed, 9 insertions, 10 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinaryElement.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinaryElement.java
index 88313bd795b..08dab6f9156 100644
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinaryElement.java
+++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IBinaryElement.java
@@ -15,7 +15,6 @@ package org.eclipse.cdt.core.model;
import org.eclipse.cdt.core.IAddress;
-
/**
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
@@ -23,17 +22,17 @@ import org.eclipse.cdt.core.IAddress;
public interface IBinaryElement extends ICElement {
/**
- * Returns the address of the function. This method will return,
- * the address of a symbol for children of IBinaryObject.
- *
- * @exception CModelException if this element does not have address
- * information.
- */
- IAddress getAddress() throws CModelException;
+ * Returns the address of the function. This method will return,
+ * the address of a symbol for children of IBinaryObject.
+ *
+ * @exception CModelException if this element does not have address
+ * information.
+ */
+ IAddress getAddress() throws CModelException;
/**
- * Returns the binary object the element belongs to.
+ * Returns the binary object the element belongs to.
*
- */
+ */
IBinary getBinary();
}

Back to the top