KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > magnet > render > RenderableIF


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 &#169; 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
Popular Tags