/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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 javax.management.openmbean.CompositeData; public class MemoryUsage extends Object { public MemoryUsage(long init, long used, long committed, long max) { } native public long getInit(); native public long getUsed(); native public long getCommitted(); native public long getMax(); native public String toString(); native public static MemoryUsage from(CompositeData cd); }