Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/IMemberValuePairBinding.java')
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/IMemberValuePairBinding.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/IMemberValuePairBinding.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/IMemberValuePairBinding.java
index 1d8fb5183e..e1813a5d6e 100644
--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/IMemberValuePairBinding.java
+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/IMemberValuePairBinding.java
@@ -16,21 +16,21 @@ package org.eclipse.jdt.core.dom;
* Represents a resolved instance of an annotation's member value pair.
* Resolved annotation are computed along with other bindings; these objects
* correspond to {@link MemberValuePair} nodes.
- *
+ *
* @since 3.2
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IMemberValuePairBinding extends IBinding {
/**
* Returns the name of the annotation type member.
- *
+ *
* @return the name of the member
*/
public String getName();
/**
* Returns the method binding corresponding to the named annotation type member.
- *
+ *
* @return the method binding for the annotation type member
*/
public IMethodBinding getMethodBinding();
@@ -46,7 +46,7 @@ public IMethodBinding getMethodBinding();
* <li>array type - an <code>Object[]</code> whose elements are as per above
* (the language only allows single dimensional arrays in annotations)</li>
* </ul>
- *
+ *
* @return the resolved value, or <code>null</code> if none exists
*/
public Object getValue();

Back to the top