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

com.talk2object.plum.repository.meta.Field Maven / Gradle / Ivy

There is a newer version: 0.1.22
Show newest version
package com.talk2object.plum.repository.meta;

public class Field {
	private String name;
	private Class type;
	private java.lang.reflect.Field reflectionField;

	public Field(String name, Class type, java.lang.reflect.Field reflectionField) {
		this.name = name;
		this.type = type;
		this.reflectionField = reflectionField;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Class getType() {
		return type;
	}

	public void setType(Class type) {
		this.type = type;
	}

	public java.lang.reflect.Field getReflectionField() {
		return reflectionField;
	}

	public void setReflectionField(java.lang.reflect.Field reflectionField) {
		this.reflectionField = reflectionField;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy