de.tsl2.nano.bean.def.BeanProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tsl2.nano.descriptor Show documentation
Show all versions of tsl2.nano.descriptor Show documentation
TSL2 Framework Descriptor (currency-handling, generic formatter, descriptors for beans, collections, actions and values)
The newest version!
/*
* File: $HeadURL$
* Id : $Id$
*
* created by: Thomas Schneider
* created on: Oct 15, 2011
*
* Copyright: (c) Thomas Schneider 2011, all rights reserved
*/
package de.tsl2.nano.bean.def;
/**
* let the proxy bean be changed after proxy creation. using 'get_' and 'set_'
* as they shoudn't overlay another interface method.
*
* @author Thomas Schneider
* @version $Revision$
*/
public interface BeanProperty {
Object get_(String key);
void set_(String key, Object value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy