Newer
Older
KeeperJerry_Launcher / Launcher / source / LauncherAPI.java
@sashok724 sashok724 on 2 Dec 2016 437 bytes перед тем как начать
package launcher;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.CLASS)
@Target({ ElementType.TYPE, ElementType.FIELD, ElementType.CONSTRUCTOR, ElementType.METHOD })
public @interface LauncherAPI {
    /* This annotation implies that method/field/class should not be renamed or obfuscated */
}