blob: 1db1abf30ad1b238c8caa4ca74b1c405e2669134 [file] [log] [blame]
package mng;
import java.util.Calendar;
import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.io.xml.DomDriver;
public class Module3TestUtil
{
public static String getCalendarAsXML(Calendar cal)
{
XStream xstream = new XStream(new DomDriver());
return xstream.toXML(cal);
}
}