In software design pattern language, what would be the right opposite term to a Presenter? Something that takes a serialized representation and constructs an object from it. Parser, Factory, Builder? None of those seem quite right and have their own baggage... any ideas?
@Floppy I'd associate a Presenter more with some form of UI presentation rather than serialise/deserialise (serdes) tasks.
@intrbiz yep, you're absolutely right, I've changed my naming to serializer, which then makes the inverse easy to name :)
Thanks!