|
From: <ans...@us...> - 2007-01-16 23:13:53
|
Revision: 3078
http://jnode.svn.sourceforge.net/jnode/?rev=3078&view=rev
Author: ansari82
Date: 2007-01-16 15:13:48 -0800 (Tue, 16 Jan 2007)
Log Message:
-----------
Added NoOptCompile pragma
Added Paths:
-----------
branches/jikesRVM/core/src/core/org/jnode/vm/annotation/NoOptCompile.java
Added: branches/jikesRVM/core/src/core/org/jnode/vm/annotation/NoOptCompile.java
===================================================================
--- branches/jikesRVM/core/src/core/org/jnode/vm/annotation/NoOptCompile.java (rev 0)
+++ branches/jikesRVM/core/src/core/org/jnode/vm/annotation/NoOptCompile.java 2007-01-16 23:13:48 UTC (rev 3078)
@@ -0,0 +1,16 @@
+package org.jnode.vm.annotation;
+
+import static java.lang.annotation.ElementType.CONSTRUCTOR;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.RetentionPolicy.CLASS;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.Retention;
+import java.lang.annotation.Target;
+
+@Documented
+@Retention(CLASS)
+@Target({CONSTRUCTOR, METHOD})
+public @interface NoOptCompile {
+
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|