Beispiel #1
0
 private void notifyListenerCancel() {
   if (listener != null) {
     listener.onCancel();
   }
 }
Beispiel #2
0
 private void notifyListener(String path) {
   if (listener != null) {
     listener.onSelectFile(path);
   }
 }