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

org.zkoss.bind.Property Maven / Gradle / Ivy

There is a newer version: 10.0.0-jakarta
Show newest version
/* Property.java

	Purpose:
		
	Description:
		
	History:
		Jul 26, 2011 5:00:34 PM, Created by henrichen

Copyright (C) 2011 Potix Corporation. All Rights Reserved.
*/
package org.zkoss.bind;

/**
 * Represent a property of a base object in the binding.
 * @author henrichen
 * @since 6.0.0
 */
public interface Property {
	/**
	 * Returns the base object of this property.
	 * @return the base object of this property.
	 */
	public Object getBase();

	/**
	 * Returns the value object of this property.
	 * @return the value object of this property.
	 */
	public Object getValue();

	/**
	 * Returns the name of this property. 
	 * @return the name of this property. 
	 */
	public String getProperty();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy