| Home >> All |
Source code: cxtable/xDownloadListener.java
1 package cxtable; 2 3 /*this class handles being notified either of a successful download 4 via the currently not implemented file-sharing thing... or a failed one*/ 5 6 7 public interface xDownloadListener{ 8 9 public void process(String file, String contents); 10 public void dl_error(String file, Exception e); 11 }