밑에 소스 대강 보시면 아시겠지만 변수 button을 배열만들수 없는 상황이라
겟터가 이렇게 나눠지게 되었는데요.
규칙적이기는 하기때문 for문으로 묶어버릴수 있을거 같은데.. 방법이 있을까요?
if (tmf.getButton1() != null) {
if (tmf.getButton1().equals("등록")) {
} else if (tmf.getButton1().equals("삭제")) {
}
}
if (tmf.getButton2() != null) {
if (tmf.getButton2().equals("등록")) {
} else if (tmf.getButton2().equals("삭제")) {
}
}
if (tmf.getButton3() != null) {
if (tmf.getButton3().equals("등록")) {
} else if (tmf.getButton3().equals("삭제")) {
}
}
if (tmf.getButton4() != null) {
if (tmf.getButton4().equals("등록")) {
} else if (tmf.getButton4().equals("삭제")) {
}
}