/*
* VMMethodInfo.java 1.2 03/01/14 SMI
*
* Copyright © 2003 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package vm;
/*
* The machine-independent parent of all machine-dependent information.
* on methods.
*/
public class VMMethodInfo extends VMClassMemberInfo {
public static final boolean SAVE_TARGET_METHODS = true;
}
|