00001
00027 package org.objectweb.jonas.ant.jonasbase;
00028
00029 import java.io.File;
00030
00035 public class Archives extends JCopy implements BaseTaskItf {
00036
00040 private String folderName = null;
00041
00047 public Archives(String header, String folderName) {
00048 super();
00049 this.folderName = folderName;
00050 setLogInfo(header + "Copying " + folderName + "...");
00051 }
00052
00058 public void setDestDir(File destDir) {
00059 File jBaseLibExtDir = new File(destDir.getPath() + File.separator + folderName);
00060 super.setDestDir(jBaseLibExtDir);
00061 }
00062
00063 }