Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/model/org/eclipse/jdt/core/util/IAttributeNamesConstants.java')
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/core/util/IAttributeNamesConstants.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/util/IAttributeNamesConstants.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/util/IAttributeNamesConstants.java
index 093a760d81..e5dafa4072 100644
--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/util/IAttributeNamesConstants.java
+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/util/IAttributeNamesConstants.java
@@ -12,7 +12,7 @@ package org.eclipse.jdt.core.util;
/**
* Description of attribute names as described in the JVM specifications.
- *
+ *
* @since 2.0
* @noimplement This interface is not intended to be implemented by clients.
*/
@@ -74,31 +74,31 @@ public interface IAttributeNamesConstants {
* @since 2.0
*/
char[] DEPRECATED = "Deprecated".toCharArray(); //$NON-NLS-1$
-
+
/**
* "Signature" attribute (added in J2SE 1.5).
- * Class file readers which support J2SE 1.5 return
+ * Class file readers which support J2SE 1.5 return
* attributes with this name represented by objects
* implementing {@link ISignatureAttribute}.
* @since 3.0
*/
char[] SIGNATURE = "Signature".toCharArray(); //$NON-NLS-1$
-
+
/**
* "EnclosingMethod" attribute (added in J2SE 1.5).
- * Class file readers which support J2SE 1.5 return
+ * Class file readers which support J2SE 1.5 return
* attributes with this name represented by objects
* implementing {@link IEnclosingMethodAttribute}.
* @since 3.0
*/
char[] ENCLOSING_METHOD = "EnclosingMethod".toCharArray(); //$NON-NLS-1$
-
+
/**
* "LocalVariableTypeTable" attribute (added in J2SE 1.5).
* @since 3.0
*/
char[] LOCAL_VARIABLE_TYPE_TABLE = "LocalVariableTypeTable".toCharArray(); //$NON-NLS-1$
-
+
/**
* "RuntimeVisibleAnnotations" attribute (added in J2SE 1.5).
* @since 3.0
@@ -128,13 +128,13 @@ public interface IAttributeNamesConstants {
* @since 3.0
*/
char[] ANNOTATION_DEFAULT = "AnnotationDefault".toCharArray(); //$NON-NLS-1$
-
+
/**
* "StackMapTable" attribute (added in J2SE 1.6).
* @since 3.2
*/
char[] STACK_MAP_TABLE = "StackMapTable".toCharArray(); //$NON-NLS-1$
-
+
/**
* "StackMap" attribute (added in cldc1.0).
* @since 3.2

Back to the top