/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang.management; import java.util.List; import java.util.Map; public interface RuntimeMXBean { String getName(); String getVmName(); String getVmVendor(); String getVmVersion(); String getSpecName(); String getSpecVendor(); String getSpecVersion(); String getManagementSpecVersion(); String getClassPath(); String getLibraryPath(); boolean isBootClassPathSupported(); String getBootClassPath(); List getInputArguments(); long getUptime(); long getStartTime(); Map getSystemProperties(); }