KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jruby > evaluator > Instruction


1 /*
2  * Created on Sep 11, 2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.jruby.evaluator;
8
9
10
11 public interface Instruction {
12     public void execute(EvaluationState state, InstructionContext ctx);
13 }
14
Popular Tags