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

net.sf.javaprinciples.resource.ResourceFormatter Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
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