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

fr.whimtrip.ext.jwhthtmltopojo.adapter.HtmlToPojoAnnotationMap Maven / Gradle / Ivy

Go to download

Fully featured highly pluggable and customizable Java html to pojo reflection converter

There is a newer version: 1.0.2
Show newest version
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