From 7dd69aace9cbd37d5813dd820e6a264bb5fcf6b4 Mon Sep 17 00:00:00 2001 From: wisberg Date: Fri, 11 Feb 2005 05:28:21 +0000 Subject: new module for Java5-specific additions to aspectjrt.jar. aspectjrt.jar is assemble from this and its required module runtime. It requires Java 5; Eclipse developers not using 3.1 or Java 5 should close this module. In Ant, the java5-src directory will be ignored unless Ant is run under a 1.5 or later VM. See the build docs for more details. --- .../lang/annotation/SuppressAJWarnings.java | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 aspectj5rt/java5-src/org/aspectj/lang/annotation/SuppressAJWarnings.java (limited to 'aspectj5rt/java5-src/org/aspectj') diff --git a/aspectj5rt/java5-src/org/aspectj/lang/annotation/SuppressAJWarnings.java b/aspectj5rt/java5-src/org/aspectj/lang/annotation/SuppressAJWarnings.java new file mode 100644 index 000000000..615a913a4 --- /dev/null +++ b/aspectj5rt/java5-src/org/aspectj/lang/annotation/SuppressAJWarnings.java @@ -0,0 +1,30 @@ +/* ******************************************************************* + * Copyright (c) 2005 Contributors. + * All rights reserved. + * This program and the accompanying materials are made available + * under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution and is available at + * http://eclipse.org/legal/epl-v10.html + * + * Contributors: + * Wes Isberg initial implementation + * ******************************************************************/ + + +package org.aspectj.lang.annotation; + +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; + +/** + * Annotate members to avoid AspectJ error messages. + * Currently supported: + * + * + */ +@Retention(RetentionPolicy.RUNTIME) +public @interface SuppressAJWarnings { + +} -- cgit v1.2.3