org.apache.axis2.databinding
Interface DeserializationTarget

All Known Implementing Classes:
MultiTarget

public interface DeserializationTarget

A DeserializationTarget is anything that receives a value from a Deserializer. Typical DeserializationTargets are things like RPC parameters, fields in a JavaBean, and items in an array. Since the deserialization system deals with multirefs that potentially point to values further forward in the data stream, we always use instances of this interface to set values. This allows the deserialization framework to store the targets and fill them in later if necessary.


Method Summary
 void setValue(java.lang.Object value)
           
 

Method Detail

setValue

public void setValue(java.lang.Object value)
              throws java.lang.Exception
Throws:
java.lang.Exception