package com.laytonsmith.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * This annotation indicates that the compiler should not do linking to the * arguments inside of this function. It is implied that the function itself * will do its own linking, perhaps at a later time. */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface nolinking { }