Possible Duplicate:
What is the opposite of 'parse'?
I'm writing a library that converts a string into some memory objects using some syntax. I created a class called "Parser" to do this. Now I want to create a class that does exactly the opposite, i.e. output the syntax string from the object in memory. Any suggestions for good names for this class? I have thought of "Unparser", "Writer", "ToStringer", but all doesn't make much sense to me.
[EDIT] I should have stated clearer the current structure of my library:
class XXXObject - an object in XXX format, a constructor new XXXObject(string syntax)
class YYYObject - an object in YYY format, a constructor new YYYObject(string syntax)
class ZZZObject - an object in ZZZ format, a constructor new ZZZObject(string syntax)
class Parser - a function Parse(string syntax) that returns either XXXObject, YYYObject or ZZZObject
[?class] - a function [?name](object o) that takes either XXXObject,YYYObject or ZZZObject and returns its string syntax version
Serializer - a function Serialize(T data) that takes any data type and converts it to either XXX,YYY or ZZZ
Deserializer - a function Deserialize(object o) that takes either XXX,YYY or ZZZ and return any type T