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

com.jpattern.orm.classmapper.IColumn Maven / Gradle / Ivy

There is a newer version: 3.5.1
Show newest version
package com.jpattern.orm.classmapper;

import java.lang.reflect.Field;
import java.lang.reflect.Method;

/**
 * 
 * @author Francesco Cina
 *
 * 04/giu/2011
 */
public interface IColumn {

	public abstract String getName();

	public abstract boolean isIdentifying();

	public abstract Method getGetter();

	public abstract Method getSetter();

	Field getField();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy