Komplettes G-Earth Paket inkl. JRE, Extensions und Tools. Extensions: - G-BuildTools, G-Click Ultimate, G-Loader, G-Manipulate - G-Presets, G-Translator, G-Trigger, G-itemViewer - Market Utils, Packet Info Explorer, Plants - RandomRoomVisitor, RoomLogger, Sanbovir Photo Inspector - SpyFriends, WallAligner, XabboScripter, xabbo
35 lines
817 B
Java
35 lines
817 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target(value={ElementType.TYPE, ElementType.FIELD, ElementType.METHOD})
|
|
@Retention(value=RetentionPolicy.RUNTIME)
|
|
public @interface Resource {
|
|
public String name() default "";
|
|
|
|
public String lookup() default "";
|
|
|
|
public Class<?> type() default Object.class;
|
|
|
|
public AuthenticationType authenticationType() default AuthenticationType.CONTAINER;
|
|
|
|
public boolean shareable() default true;
|
|
|
|
public String mappedName() default "";
|
|
|
|
public String description() default "";
|
|
|
|
public static enum AuthenticationType {
|
|
CONTAINER,
|
|
APPLICATION;
|
|
|
|
}
|
|
}
|
|
|