/***********************************************************************************@@ * Program Name : TotPer.java * Description : 집계자 환경변수 * Author : 강원중 * Create Date : 2004-10-20 * History : @@***********************************************************************************/ package kr.co.kihyun.moumi; public class TotPer extends Person{ /************** ROOT **************/ //v2. 5.static final 필드 변조 가능성 : Update by KWON,HAN //private는 같은 클래스 내에서만 호출이 가능하므로 접근제한이 없는 public으로 하고 final을 사용하지 않는다. // public static final String root = Moumi.getTotRoot().getPath()+System.getProperty("file.separator")+"totper"; // // /************** 대 메뉴 **************/ // public static final int MOYDOC = 0; // public static final int FORM = 1; // public static final int PRSS = 2; // public static final int END = 3; // public static final int READ = 4; // public static final int SETUP = 5; private static final String root = Moumi.getTotRoot().getPath()+System.getProperty("file.separator")+"totper"; /************** 대 메뉴 **************/ private static final int MOYDOC = 0; private static final int FORM = 1; private static final int PRSS = 2; private static final int END = 3; private static final int READ = 4; private static final int SETUP = 5; //========================================================== }