source: java/installer2/src/net/oni2/aeinstaller/backend/oni/management/tools/ToolFileIteratorEntry.java

Last change on this file was 1019, checked in by alloc, 10 years ago

AEI 2.21: Copy .app folders as a whole

File size: 513 bytes
Line 
1package net.oni2.aeinstaller.backend.oni.management.tools;
2
3import java.io.File;
4
5/**
6 * @author Christian Illy
7 */
8public 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}
Note: See TracBrowser for help on using the repository browser.