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

org.zkoss.zk.ui.sys.PropertyAccess Maven / Gradle / Ivy

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

	Purpose:
		
	Description:
		
	History:
		12:43 PM 9/9/15, Created by jumperchen

Copyright (C) 2015 Potix Corporation. All Rights Reserved.
*/
package org.zkoss.zk.ui.sys;

import java.io.Serializable;

import org.zkoss.zk.ui.Component;

/**
 * A property access interface to speed up Java reflection performance.
 * @author jumperchen
 * @since 8.0.0
 */
public interface PropertyAccess extends Serializable {
	public void setValue(Component cmp, T value);

	public Class getType();

	public T getValue(Component cmp);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy