001 package cpw.mods.fml.relauncher; 002 003 import java.lang.annotation.ElementType; 004 import java.lang.annotation.Retention; 005 import java.lang.annotation.RetentionPolicy; 006 import java.lang.annotation.Target; 007 008 009 @Retention(RetentionPolicy.RUNTIME) 010 @Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR}) 011 public @interface SideOnly 012 { 013 public Side value(); 014 }