13 lines
289 B
Java
13 lines
289 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 Order {
|
||
|
String[] attributes() default {};
|
||
|
|
||
|
String[] elements() default {};
|
||
|
}
|