KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jruby > compiler > ClosureCallback


1 /*
2  * ClosureCallback.java
3  *
4  * Created on January 4, 2007, 12:32 AM
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */

9
10 package org.jruby.compiler;
11
12 /**
13  *
14  * @author headius
15  */

16 public interface ClosureCallback {
17     public void compile(Compiler JavaDoc context);
18 }
19
Popular Tags