All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itelg.spring.xml.marshaller.AbstractWriter Maven / Gradle / Ivy

There is a newer version: 0.3.0-RELEASE
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy