You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
/***********************************************************************************@@ |
|
* Program Name : RepoAdm.java |
|
* Description : 보고관리자 환경 변수 |
|
* Author : 강원중 |
|
* Create Date : 2004-10-20 |
|
* History : |
|
@@***********************************************************************************/ |
|
|
|
package kr.co.kihyun.moumi; |
|
|
|
public class RepoAdm extends Person{ |
|
|
|
/************** ROOT **************/ |
|
//v2. 5.static final 필드 변조 가능성 : Update by KWON,HAN |
|
// public static final String root = Moumi.getTotRoot().getPath()+System.getProperty("file.separator")+"repoadm"; |
|
// |
|
// |
|
// |
|
// /************** 대 메뉴 **************/ |
|
// public static final int ACCEPT = 0; |
|
// public static final int ASSIGN = 2; |
|
// public static final int RECOG = 3; |
|
// public static final int COMP = 4; |
|
// public static final int END = 5; |
|
// public static final int READ = 6; |
|
// public static final int SETUP = 7; |
|
|
|
private static final String root = Moumi.getTotRoot().getPath()+System.getProperty("file.separator")+"repoadm"; |
|
|
|
|
|
|
|
/************** 대 메뉴 **************/ |
|
private static final int ACCEPT = 0; |
|
private static final int ASSIGN = 2; |
|
private static final int RECOG = 3; |
|
private static final int COMP = 4; |
|
private static final int END = 5; |
|
private static final int READ = 6; |
|
private static final int SETUP = 7; |
|
//========================================================== |
|
}
|
|
|