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

org.robobinding.property.PropertyWrapper Maven / Gradle / Ivy

package org.robobinding.property;

/**
 * 
 * @since 1.0
 * @version $Revision: 1.0 $
 * @author Cheng Wei
 */
public class PropertyWrapper implements Property {
	private final Property property;

	public PropertyWrapper(Property property) {
		this.property = property;
	}

	@Override
	public Class getPropertyType() {
		return property.getPropertyType();
	}

	@Override
	public void checkReadWriteProperty(boolean isReadWriteProperty) {
		property.checkReadWriteProperty(isReadWriteProperty);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy