net.sf.javaprinciples.resource.ResourceFormatter Maven / Gradle / Ivy
package net.sf.javaprinciples.resource;
/**
*
* @author wslade
* @param - content type to format
* @param - formatted type
*/
public interface ResourceFormatter
{
/**
*
* @param content Any content that can be converted, never null
* @return The formatted content, never null
*/
public S formatResource(T content);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy