1 package net.sourceforge.phpeclipse.mover;
4 * Specify how to move a file from the XML acquisition directory
5 * to the publishing/HTML/other one. Implementations perform actual
6 * styling/copying operations.
8 * @author <a href="http://www.marchal.com">Benoît Marchal</a>
11 // Copyright 2001, BenoƮt Marchal.
12 //Changes 2003, Klaus Hartlage
16 public interface IMover
21 * @param sourceFile the file to move
22 * @param targetDir the directory to copy the result to
23 * @return new file or null if the file was ignored
25 public File move(File sourceFile,File targetDir)