Package jadex.xml
Interface ISubObjectConverter
-
- All Known Implementing Classes:
SubObjectConverter
public interface ISubObjectConverter
Converter for subobjects. Consist of two methods for object-object conversion.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
convertObjectForRead(java.lang.Object val, IContext context)
Convert an object to another object.java.lang.Object
convertObjectForWrite(java.lang.Object val, IContext context)
Convert an object to another object.
-
-
-
Method Detail
-
convertObjectForRead
java.lang.Object convertObjectForRead(java.lang.Object val, IContext context) throws java.lang.Exception
Convert an object to another object.- Parameters:
val
- The value to convert.- Throws:
java.lang.Exception
-
convertObjectForWrite
java.lang.Object convertObjectForWrite(java.lang.Object val, IContext context) throws java.lang.Exception
Convert an object to another object.- Parameters:
val
- The value to convert.- Throws:
java.lang.Exception
-
-