KickJava   Java API By Example, From Geeks To Geeks.

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


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

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