what-the-bank/sources/org/simpleframework/xml/ElementList.java

23 lines
465 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.simpleframework.xml;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
/* loaded from: classes.dex */
public @interface ElementList {
boolean data() default false;
boolean empty() default true;
String entry() default "";
boolean inline() default false;
String name() default "";
boolean required() default true;
Class type() default void.class;
}