xmlparser.annotations.XmlMapWithChildNodes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simplexml Show documentation
Show all versions of simplexml Show documentation
A clean and simple XML parser, serializer, and deserializer.
package xmlparser.annotations;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/*
* Used for serializing and deserializing maps of this form:
*
* -
*
keyname
* value1
*
* -
*
otherkeyname
* value2
*
*/
@Retention(RUNTIME)
public @interface XmlMapWithChildNodes {
String keyName();
String valueName() default "";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy