KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jfun > yan > xml > nut > ComponentNut


1 package jfun.yan.xml.nut;
2
3 import jfun.yan.Component;
4
5 /**
6  * Super class for any Nut that evaluates to {@link jfun.yan.Component}.
7  * <p>
8  * @author Ben Yu
9  * Nov 9, 2005 11:44:15 PM
10  */

11 public abstract class ComponentNut extends Nut{
12   public abstract Component eval()
13   throws Exception JavaDoc;
14 }
15
Popular Tags