11 lines
252 B
Java
11 lines
252 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 ElementListUnion {
|
||
|
ElementList[] value();
|
||
|
}
|