Package org.netbeans.server.uihandler.statistics

Examples of org.netbeans.server.uihandler.statistics.Memory


        String dirPath = Utils.getUploadDirPath(Utils.getHeapRootUploadDir(), getUserdir());
        return new File(dirPath, getFileName());
    }

    public Integer getUserMemory(EntityManager em) {
        Memory memory = new Memory();
        Preferences pref = DbPreferences.root(this, memory, em);
        try {
            Map<Long, Integer> result = memory.read(pref);
            if (!result.isEmpty()){
                Long value = result.keySet().iterator().next();
                value = value / 1024 / 1024;
                return value.intValue();
            }
View Full Code Here

TOP

Related Classes of org.netbeans.server.uihandler.statistics.Memory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.