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

org.ujoframework.extensions.ValueAgent Maven / Gradle / Ivy

There is a newer version: 1.22
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package org.ujoframework.extensions;

/**
 * The ValueAgent make reading or writing a property value.
 * The interface is designed for implementation to a UjoProperty.
 * @author Pavel Ponec
 */
public interface ValueAgent {
   
    /** WARNING: There is recommended to call the method from the method Ujo.writeValue(...) only.
     * 
A direct call can bypass a important actions implemented in the writeProperty(method). */ public void writeValue(final UJO bean, final VALUE value); /** WARNING: There is recommended to call the method from the method Ujo.readValue(...) only. *
A direct call can bypass a important actions implemented in the readProperty(method). */ public VALUE readValue(final UJO bean); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy