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

org.rendersnake.Renderable Maven / Gradle / Ivy

The newest version!
package org.rendersnake;

import java.io.IOException;
/**
 * Implementors can be rendered using a HtmlCanvas.
 * 
* An IOException is thrown when the html cannot write its tags. * * @author ernestmicklei */ public interface Renderable { /** * Render the receiver using the HTML html. * @param html * @throws IOException */ void renderOn(HtmlCanvas html) throws IOException; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy