1 package org.sapia.magnet.render; 2 3 /** 4 * 5 * 6 * @author Jean-Cedric Desrochers 7 * 8 * <dl> 9 * <dt><b>Copyright:</b><dd>Copyright © 2002-2003 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt> 10 * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the 11 * <a HREF="http://www.sapia-oss.org/license.html" target="sapia-license">license page</a> at the Sapia OSS web site</dd></dt> 12 * </dl> 13 */ 14 public interface RenderableIF { 15 16 /** 17 * Renders this objects to the magnet context passed in. 18 * 19 * @param aContext The magnet context to use. 20 * @exception RenderingException If an error occurs while rendering this object. 21 */ 22 public void render(MagnetContext aContext) throws RenderingException; 23 } 24