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/lowlevel/MethodEntry.java


1   package com.techtrader.modules.tools.bytecode.lowlevel;
2   
3   
4   import java.io.DataInput;
5   import java.io.DataOutput;
6   import java.io.IOException;
7   import java.io.PrintWriter;
8   
9   import com.techtrader.modules.tools.bytecode.visitor.BCVisitor;
10  
11  
12  /**
13   *  Represents a method in the constant pool.
14   *  
15   *  @author    Abe White
16   */
17  public class MethodEntry
18    extends ComplexEntry
19  {
20    public int getType ()
21    {
22      return ENTRY_METHOD;
23    }
24  
25  
26    public void acceptVisit (BCVisitor visit)
27    {
28      visit.enterMethodEntry (this);
29      visit.exitMethodEntry (this);
30    }
31  }