001 002 package net.sourceforge.retroweaver.runtime.java.lang.annotation; 003 004 /** 005 * A mirror of java.lang.annotation.RetentionPolicy. 006 * 007 * @author Toby Reyelts 008 * 009 */ 010 public enum RetentionPolicy { 011 CLASS, 012 RUNTIME, 013 SOURCE; 014 } 015