KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * BranchCallback.java
3  *
4  * Created on January 3, 2007, 4:51 PM
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 BranchCallback {
17     public void branch(Compiler JavaDoc context);
18 }
19
Popular Tags