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

xmlparser.annotations.XmlMapWithAttributes Maven / Gradle / Ivy

package xmlparser.annotations;

import java.lang.annotation.Retention;

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

/*
 * Used for serializing and deserializing maps of this form:
 *
 * value
 * 
 */
@Retention(RUNTIME)
public @interface XmlMapWithAttributes {
    String keyName();
    String valueName() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy