KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jruby > ast > executable > Script


1 package org.jruby.ast.executable;
2
3 import org.jruby.runtime.Block;
4 import org.jruby.runtime.ThreadContext;
5 import org.jruby.runtime.builtin.IRubyObject;
6
7 public interface Script {
8     public IRubyObject run(ThreadContext context, IRubyObject self, IRubyObject[] args, Block block);
9 }
10
Popular Tags