15 lines
318 B
Java
15 lines
318 B
Java
|
package org.simpleframework.xml;
|
||
|
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
/* loaded from: classes.dex */
|
||
|
public @interface Attribute {
|
||
|
String empty() default "";
|
||
|
|
||
|
String name() default "";
|
||
|
|
||
|
boolean required() default true;
|
||
|
}
|