com.itelg.spring.xom.marshaller.writer.AbstractWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-xom-marshaller Show documentation
Show all versions of spring-xom-marshaller Show documentation
Spring XML Marshalling with XOM
package com.itelg.spring.xom.marshaller.writer;
import nu.xom.Element;
public abstract class AbstractWriter implements Writer
{
@SuppressWarnings("unchecked")
@Override
public Element write(Object object)
{
return doWrite((T) object);
}
protected abstract Element doWrite(T object);
}