Here you can find the source of getMemoryLimitMinSize()
public static int getMemoryLimitMinSize()
//package com.java2s; /**/*from ww w .j a v a2s .co m*/ * ?????????????????????????.<br> * * @author T.Okuyama * @license GPL(Lv3) */ public class Main { private static Integer memoryLimitMinSize = new Integer(90); public static int getMemoryLimitMinSize() { return memoryLimitMinSize.intValue(); } }