public class GlobalVarsBean { static int hcg_log; static long time; GlobalVarsBean() { } static void setHcg_log(int hcglog) { hcg_log=hcglog; } static int getHcg_log() {return hcg_log; } static void setStart_time() { time = System.currentTimeMillis(); } static void setTime(long startTime) {time=startTime; } static long getTime() {return time;} }