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

org.oddjob.arooa.standard.PropertyDefinition Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package org.oddjob.arooa.standard;

import org.oddjob.arooa.reflect.ArooaClass;


/**
 * Contains information about the property of a bean.
 * 
 * @author rob
 *
 */
interface PropertyDefinition {
	
	/**
	 * The property name in the parent bean.
	 * 
	 * @return
	 */
	public String getPropertyName();
	
	/**
	 * The class name of the property.
	 * 
	 * @return
	 */
	public ArooaClass getPropertyType();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy