ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/java/installer2/src/net/oni2/aeinstaller/backend/oni/management/tools/ToolFileIteratorEntry.java
Revision: 1019
Committed: Sat Mar 28 20:07:12 2015 UTC (11 years, 1 month ago) by alloc
Content type: text/x-java
File size: 513 byte(s)
Log Message:
AEI 2.21: Copy .app folders as a whole

File Contents

# Content
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 }