Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/JpaAnnotationDefinitionProvider.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/JpaAnnotationDefinitionProvider.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/JpaAnnotationDefinitionProvider.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/JpaAnnotationDefinitionProvider.java
index f48c8eeba3..73d823fba5 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/JpaAnnotationDefinitionProvider.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/JpaAnnotationDefinitionProvider.java
@@ -22,7 +22,7 @@ import org.eclipse.jpt.core.resource.java.AnnotationDefinition;
* pioneering adopters on the understanding that any code that uses this API
* will almost certainly be broken (repeatedly) as the API evolves.
*
- * @version 2.3
+ * @version 3.0
* @since 2.2
*/
public interface JpaAnnotationDefinitionProvider
@@ -43,4 +43,9 @@ public interface JpaAnnotationDefinitionProvider
* Return all annotation definitions which can appear on an attribute
*/
Iterator<AnnotationDefinition> attributeAnnotationDefinitions();
+
+ /**
+ * Return all annotation definitions which can appear on a package.
+ */
+ Iterator<AnnotationDefinition> packageAnnotationDefinitions();
}

Back to the top