예제 #1
0
파일: Note.java 프로젝트: conker84/zeppelin
 @Override
 public void onProgressUpdate(Job job, int progress) {
   if (jobListenerFactory != null) {
     ParagraphJobListener listener = jobListenerFactory.getParagraphJobListener(this);
     if (listener != null) {
       listener.onProgressUpdate(job, progress);
     }
   }
 }