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

com.beans.properties.PropertyBase Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
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())); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy