Path: blob/master/src/java.management/share/classes/sun/management/MethodInfo.java
41152 views
/*1* Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package sun.management;2627import sun.management.counter.*;2829/**30*/31public class MethodInfo implements java.io.Serializable {32private String name;33private long type;34private int compileSize;3536MethodInfo(String name, long type, int compileSize) {37this.name = name;38this.type = type;39this.compileSize = compileSize;40}4142/**43* Returns the name of the compiled method.44*45* @return the name of the compiled method.46*/47public String getName() {48return name;49}5051/**52* Returns the type of the compiled method such as normal-compile,53* osr-compile, and native-compile.54*55* @return the type of the compiled method.56*/57public long getType() {58return type;59}6061/**62* Returns the number of bytes occupied by this compiled method.63* This method returns -1 if not available.64*65* @return the number of bytes occupied by this compiled method.66*/67public int getCompileSize() {68return compileSize;69}7071public String toString() {72return getName() + " type = " + getType() +73" compileSize = " + getCompileSize();74}7576private static final long serialVersionUID = 6992337162326171013L;7778}798081