[강운덕] [LUCYSUS-1744] 바인딩 변수 api 할당 api의 아규먼트를 문자열로 치환하는 로직 부분 개발.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@626 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Woonduk Kang
2012-09-11 10:20:52 +00:00
parent 3b84111280
commit aea998cc03
14 changed files with 325 additions and 40 deletions
@@ -23,4 +23,15 @@ public class NumberUtils {
}
}
public static Integer toInteger(Object integer) {
if(integer == null) {
return null;
}
if (integer instanceof Integer) {
return (Integer)integer;
} else {
return null;
}
}
}