aboutsummaryrefslogtreecommitdiffstats
path: root/aspectj5rt/java5-src/org/aspectj/lang/reflect/Advice.java
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-04-18 19:45:53 +0000
committeracolyer <acolyer>2005-04-18 19:45:53 +0000
commit5113377894abae3490bc3849c49353890cf70f42 (patch)
treeccf2c579b1cb9ce8e2b39df2978c96405006f70c /aspectj5rt/java5-src/org/aspectj/lang/reflect/Advice.java
parent45f1f040588862f0100f3844574f3a80afab8e15 (diff)
downloadaspectj-5113377894abae3490bc3849c49353890cf70f42.tar.gz
aspectj-5113377894abae3490bc3849c49353890cf70f42.zip
I'm committing this shell of an implementation for runtime reflection on AspectJ's type system. It's needed by the aUnit guys and provides a means for us to share a structure, take patches etc.. NOT to be considered finished (ha ha) or even a final design at this point in time. We have to do some compiler work to generate runtime-visible structures to support this...
Diffstat (limited to 'aspectj5rt/java5-src/org/aspectj/lang/reflect/Advice.java')
-rw-r--r--aspectj5rt/java5-src/org/aspectj/lang/reflect/Advice.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/aspectj5rt/java5-src/org/aspectj/lang/reflect/Advice.java b/aspectj5rt/java5-src/org/aspectj/lang/reflect/Advice.java
new file mode 100644
index 000000000..b31f94b6e
--- /dev/null
+++ b/aspectj5rt/java5-src/org/aspectj/lang/reflect/Advice.java
@@ -0,0 +1,16 @@
+/* *******************************************************************
+ * 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:
+ * Adrian Colyer Initial implementation
+ * ******************************************************************/
+package org.aspectj.lang.reflect;
+
+public interface Advice {
+
+}