Package adams.tools
Interface DatabaseIDProcessor
-
public interface DatabaseIDProcessor
For tools that can process custom database IDs as well.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int[]
getDatabaseIDs()
Returns the database IDs to process.boolean
hasDatabaseIDs()
Checks whether custom database IDs have been set.void
setDatabaseIDs(int[] value)
Sets the database IDs to process.
-
-
-
Method Detail
-
setDatabaseIDs
void setDatabaseIDs(int[] value)
Sets the database IDs to process.- Parameters:
value
- the IDs
-
getDatabaseIDs
int[] getDatabaseIDs()
Returns the database IDs to process.- Returns:
- the IDs
-
hasDatabaseIDs
boolean hasDatabaseIDs()
Checks whether custom database IDs have been set.- Returns:
- true if custom database IDs will be processed
-
-