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

jadex.xml.ISubObjectConverter Maven / Gradle / Ivy

package jadex.xml;

/**
 *  Converter for subobjects. Consist of two methods for object-object conversion.
 */
public interface ISubObjectConverter
{
	//-------- methods --------
	
	/**
	 *  Convert an object to another object.
	 *  @param val The value to convert.
	 */
	public Object convertObjectForRead(Object val, IContext context) throws Exception;
	
	/**
	 *  Convert an object to another object.
	 *  @param val The value to convert.
	 */
	public Object convertObjectForWrite(Object val, IContext context) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy