/**
* 파일 업로드 완료 이벤트
* @param objInst 파일 업로드 컴포넌트 인스턴스
* @param nFileIndex 파일 인덱스(Zero-Based)
* @param strFileName 파일 이름
*/
function uploader_basic_on_filecomplete(objInst, nFileIndex, strFileName)
{
factory.consoleprint("on_filecomplete> Name = " + objInst.getname());
factory.consoleprint("on_filecomplete> nFileIndex = " + nFileIndex);
factory.consoleprint("on_filecomplete> strFileName = " + strFileName);
factory.consoleprint("on_filecomplete> status = " + objInst.getfilestatus(nFileIndex));
factory.consoleprint("on_filecomplete> progress = " + objInst.getfileprogress(nFileIndex));
factory.consoleprint("on_filecomplete> result = " + objInst.getfileresult(nFileIndex));
factory.consoleprint("on_filecomplete> result msg = " + objInst.getfileresultmsg(nFileIndex));
factory.consoleprint("on_filecomplete> result file name = " + objInst.getfileresultfilename(nFileIndex));
}