/* * * @(#) MethodConstant.java 1.2@(#) * * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved. * * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING * THIS SOFTWARE OR ITS DERIVATIVES. * */ /** *
* FESI.ClassFile.MethodConstant *
* * @version 1.0 * @author Laurence P. G. Cable */ package FESI.ClassFile; import FESI.ClassFile.ClassFile; import FESI.ClassFile.RefConstant; /** *this class provides minimal support for the CONSTANT_METHODREF CPE
*/ class MethodConstant extends RefConstant { /** *construct a CONSTANT_METHODREF
* * @param cName the name of the implementing class * @param nName the name of the method * @param tName the type descriptor of the method * @param cf the class file */ MethodConstant(String cName, String nName, String tName, ClassFile cf) { super(CONSTANT_METHODREF, cName, nName, tName, cf); } }