summaryrefslogtreecommitdiffstats
path: root/ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java
diff options
context:
space:
mode:
Diffstat (limited to 'ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java')
-rw-r--r--ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java b/ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java
new file mode 100644
index 0000000..4e3344e
--- /dev/null
+++ b/ri/src/main/java/javax/annotation/OverridingMethodsMustInvokeSuper.java
@@ -0,0 +1,20 @@
+package javax.annotation;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/**
+ * When this annotation is applied to a method, it indicates that if this method
+ * is overridden in a subclass, the overriding method should invoke this method
+ * (through method invocation on super).
+ *
+ */
+@Documented
+@Target( { ElementType.METHOD })
+@Retention(RetentionPolicy.RUNTIME)
+public @interface OverridingMethodsMustInvokeSuper {
+
+}