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

com.bigdata.counters.render.IRenderer Maven / Gradle / Ivy

package com.bigdata.counters.render;

import java.io.IOException;
import java.io.Writer;

/**
 * Interface for rendering some data.
 * 
 * @author Bryan Thompson
 * @version $Id$
 */
public interface IRenderer {

    /**
     * Render the data.
     * 
     * @param w
     *            Where to write the data.
     *            
     * @throws IOException
     */
    public void render(Writer w) throws IOException;
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy