Esempio n. 1
0
 /**
  * Creates a new ProxyFile using the given file to delegate AbstractFile method calls to.
  *
  * @param file the file to be proxied
  */
 public ProxyFile(AbstractFile file) {
   super(file.getURL());
   this.file = file;
 }
Esempio n. 2
0
 @Override
 public FileURL getURL() {
   return file.getURL();
 }