All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xmlparser.annotations.XmlAbstractClass Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package xmlparser.annotations;

import java.lang.annotation.Retention;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

/*
 * Used for deserializing fields of abstract classes
 */
@Retention(RUNTIME)
public @interface XmlAbstractClass {

    @interface TypeMap {
        String name();
        Class type();
    }

    String attribute() default "class";
    String tag() default "";
    TypeMap[] types();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy