com.itelg.spring.xml.marshaller.AbstractWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-xml-extensions Show documentation
Show all versions of spring-xml-extensions Show documentation
Spring Marshaller/Unmarshaller based on Xom
package com.itelg.spring.xml.marshaller;
public abstract class AbstractWriter implements Writer
{
@SuppressWarnings("unchecked")
@Override
public String write(Object object)
{
return doWrite((T) object);
}
protected abstract String doWrite(T object);
}