1 26 27 package org.objectweb.jonas.ant.jonasbase; 28 29 import java.io.File ; 30 31 35 public class Archives extends JCopy implements BaseTaskItf { 36 37 40 private String folderName = null; 41 42 47 public Archives(String header, String folderName) { 48 super(); 49 this.folderName = folderName; 50 setLogInfo(header + "Copying " + folderName + "..."); 51 } 52 53 58 public void setDestDir(File destDir) { 59 File jBaseLibExtDir = new File (destDir.getPath() + File.separator + folderName); 60 super.setDestDir(jBaseLibExtDir); 61 } 62 63 } | Popular Tags |