Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/techtrader/modules/tools/bytecode/MonitorInstruction.java


1   package com.techtrader.modules.tools.bytecode;
2   
3   
4   /**
5    *  A MONITORENTER or MONITOREXIT instruction.
6    *
7    *  @author    Abe White
8    */
9   public abstract class MonitorInstruction
10    extends Instruction
11  {
12    protected MonitorInstruction (Code owner)
13    {
14      super (owner);
15    }
16  
17  
18    public int getStackChange ()
19    {
20      return -1;
21    }
22  }