| 1 |
package net.oni2.aeinstaller.backend.oni.management.tools; |
| 2 |
|
| 3 |
import java.io.File; |
| 4 |
|
| 5 |
/** |
| 6 |
* @author Christian Illy |
| 7 |
*/ |
| 8 |
public interface ToolFileIteratorEntry { |
| 9 |
/** |
| 10 |
* Handle a file in a tool package |
| 11 |
* |
| 12 |
* @param source |
| 13 |
* Source of file (within local package repository) |
| 14 |
* @param target |
| 15 |
* Target of file if installed |
| 16 |
* @param isFolder |
| 17 |
* Is source a folder instead of a file? (MacOS .app folder) |
| 18 |
*/ |
| 19 |
public void toolFile(File source, File target, boolean isFolder); |
| 20 |
} |