knu project
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.
 
 
 
 
 
 

24 lines
1.0 KiB

/***********************************************************************************@@
* Program Name : Person.java
* Description : 집계자 환경변수
* Author : 강원중
* Create Date : 2004-10-20
* History :
@@***********************************************************************************/
package kr.co.kihyun.moumi;
public class Person{
/***************** del_type *****************/
//v2. 5.static final 필드 변조 가능성 : Update by KWON,HAN
//private는 같은 클래스 내에서만 호출이 가능하므로 접근제한이 없는 public으로 하고 final을 사용하지 않는다.
// public static final int NOT_DEL = 0; //정상
// public static final int DEL = 1; //임시 삭제
// public static final int COMP_DEL = 3; //완전삭제
public static int NOT_DEL = 0; //정상
public static int DEL = 1; //임시 삭제
public static int COMP_DEL = 3; //완전삭제
//==========================================================
}