KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jruby > runtime > CompiledBlockCallback


1 /*
2  * BlockCallback2.java
3  *
4  * Created on January 4, 2007, 1:12 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.runtime;
11
12 import org.jruby.runtime.builtin.IRubyObject;
13
14 /**
15  *
16  * @author headius
17  */

18 public interface CompiledBlockCallback {
19     public IRubyObject call(ThreadContext context, IRubyObject self, IRubyObject[] args, Block block, IRubyObject[][] parentScopes);
20 }
21
Popular Tags