fr.whimtrip.ext.jwhthtmltopojo.adapter.HtmlToPojoAnnotationMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whimtrip-ext-htmltopojo Show documentation
Show all versions of whimtrip-ext-htmltopojo Show documentation
Fully featured highly pluggable and customizable Java html to pojo reflection converter
package fr.whimtrip.ext.jwhthtmltopojo.adapter;
import java.lang.reflect.Field;
/**
*
* Part of project jwht-htmltopojo
*
*
* Basic POJO to hold information regarding a given annotation for
* a given field.
*
*
* @author Louis-wht
* @since 1.0.0
*/
public class HtmlToPojoAnnotationMap
{
private String name;
private U annotation;
private Field field;
public String getName() {
return name;
}
public U getAnnotation() {
return annotation;
}
public Field getField() {
return field;
}
public void setName(String name) {
this.name = name;
}
public void setAnnotation(U annotation) {
this.annotation = annotation;
}
public void setField(Field field) {
this.field = field;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy