-
Notifications
You must be signed in to change notification settings - Fork 0
/
IFileChooser.java
24 lines (22 loc) · 1.02 KB
/
IFileChooser.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package net.g3ti.droidhopper.phoneagent.datafile.storage;
import java.util.List;
//////////////////////////////////////////////////////////////////////
/// \class IFileChooser
/// \brief Represents the file chooser interface where all file
/// choosers should extend.
/// \author Ammar Alrashed
/// \date 06/08/2012
//////////////////////////////////////////////////////////////////////
public interface IFileChooser
{
//////////////////////////////////////////////////////////////////////
/// \fn chooseDataFile((List<DataFile> dataFiles))
/// \brief Choose a file between the list of file according to the
/// implementer criteria.
/// \param[in] dataFiles - The data files to choose from.
/// \return DataFile - The data file chosen.
/// \author Ammar Alrashed
/// \date 06/08/2012
//////////////////////////////////////////////////////////////////////
DataFile chooseDataFile(List<DataFile> dataFiles);
}