Interface
caplin.presenter

SerializablePresentationModel

Interface implemented by presentation models in order to provide a serialized form of the data they contain.

Constructor Summary

Attributes Name and Description
caplin.presenter.SerializablePresentationModel()

Method Summary

Attributes Name and Description
void deserialize(String sData)

Presentation models can implement this method in order to provide a deserialization mechanism.

String serialize()

This method provides the serialized form of the presentation model.

Constructor Detail

caplin.presenter.SerializablePresentationModel()

Method Detail

void deserialize(String sData)

Presentation models can implement this method in order to provide a deserialization mechanism.

Parameters
String sData Serialized presentation model.

String serialize()

This method provides the serialized form of the presentation model. Keep in mind that the implementor should be the one providing the deserialization implementation.

Returns
Serialized presentation model.