1
2
3
4 package joeq.Compiler.Quad;
5
6 import joeq.Interpreter.QuadInterpreter;
7
8 /***
9 * @author Michael Martin <mcmartin@stanford.edu>
10 * @version $Id: NullDelegates.java 1456 2004-03-09 22:01:46Z jwhaley $
11 */
12 class NullDelegates {
13 static class Op implements joeq.Compiler.Quad.Operator.Delegate {
14 public void interpretGetThreadBlock(Operator.Special op, Quad q, QuadInterpreter s) { }
15 public void interpretSetThreadBlock(Operator.Special op, Quad q, QuadInterpreter s) { }
16 public void interpretMonitorEnter(Operator.Monitor op, Quad q, QuadInterpreter s) { }
17 public void interpretMonitorExit(Operator.Monitor op, Quad q, QuadInterpreter s) { }
18 }
19 }