Name.java
520 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.granite.jmx.annotation;
import java.lang.annotation.Annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(value={ElementType.PARAMETER})
@Retention(value=RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface Name {
public String value();
}