
xmlparser.annotations.XmlName 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.
The newest version!
package xmlparser.annotations;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Sets the name of a field or class. This annotation allows you to override the
* default name that is derived from the class or field name.
*/
@Retention(RUNTIME)
public @interface XmlName {
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy