com.beans.properties.PropertyBase Maven / Gradle / Ivy
package com.beans.properties;
import com.beans.Property;
/**
*
* Base for {@link Property} implementations.
*
*
* @param type of the property data
*
* @since JavaBeans 1.0
*/
public abstract class PropertyBase implements Property {
@Override
public String toString() {
return String.format("Property [value=%s]", String.valueOf(get()));
}
}