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

Quick Search    Search Deep

Source code: com/chaoswg/xtc4y/classdesc/InterfaceMethodrefCPEntry.java


1   //$Header: /cvsroot/xtc4y/xtc4y/src/com/chaoswg/xtc4y/classdesc/InterfaceMethodrefCPEntry.java,v 1.1.1.1 2003/08/07 13:40:30 toggm Exp $
2   /******************************************************************************
3    * XTC4y - eXtreme Testing Collection 4 you                                   *
4    * -------------------------------------------------------------------------- *
5    * URL: http://www.chaoswg.com/xtc4y                                          *
6    * Author: Mike Toggweiler (2.dog@gmx.ch)                                     *
7    *                                                                            *
8    * Last Updated: $Date: 2003/08/07 13:40:30 $, by $Author: toggm $            *
9    * Version: $Revision: 1.1.1.1 $                                                  *
10   * -------------------------------------------------------------------------- *
11   * COPYRIGHT:   (c) 2003 by Mike Toggweiler                                   *
12   *                                                                            *
13   * This program is free software; you can redistribute it and/or modify       *
14   * it under the terms of the GNU General Public License as published by       *
15   * the Free Software Foundation; either version 2 of the License, or          *
16   * (at your option) any later version.                                        *
17   *****************************************************************************/
18  package com.chaoswg.xtc4y.classdesc;
19  
20  import java.io.DataInputStream;
21  import java.io.IOException;
22  
23  /**
24   * this class represent a InterfaceMethodref constant pool entry
25   * @author Mike Toggweiler
26   **/
27  public final class InterfaceMethodrefCPEntry extends RefCPEntry {
28      /**
29       * The tag identifying a InterfaceMethodref cp entry
30       **/
31      public static final byte TAG = 11;
32  
33      /**
34       * Create a interfacemethodref entry
35       * @param classCP a ClassCPEntry
36       * @param natCP a NameAndTypeCPEntry
37       **/
38      public InterfaceMethodrefCPEntry(ClassCPEntry classCP, 
39               NameAndTypeCPEntry natCP) {
40    super(TAG, classCP, natCP);
41      }  
42  
43      /**
44       * Creates a InterfaceMethodrefCPEntry and initializes it from a 
45       * DataInputStream
46       * @param dis the DataInputStream to read from
47       **/
48      protected InterfaceMethodrefCPEntry(DataInputStream dis) 
49    throws IOException {
50    super(TAG, dis);
51      }
52  }