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

com.wizzardo.tools.reflection.FieldInfo Maven / Gradle / Ivy

There is a newer version: 0.23
Show newest version
package com.wizzardo.tools.reflection;

import java.lang.reflect.Field;

/**
 * @author: wizzardo
 * Date: 3/22/14
 */
public class FieldInfo {
    public final Field field;
    public final G generic;
    public final T reflection;

    public FieldInfo(Field field, T reflection) {
        this.field = field;
        this.reflection = reflection;
        this.generic = createGeneric(field);
    }

    protected G createGeneric(Field field) {
        return (G) new Generic(field.getGenericType());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy