Example #1
0
 public CopySpec rename(Closure closure) {
   ChainingTransformer<String> transformer = new ChainingTransformer<String>(String.class);
   transformer.add(closure);
   actions.add(new RenamingCopyAction(transformer));
   return this;
 }