Package adams.db
Interface ReportConditions
-
public interface ReportConditions
Interface for conditions classes that use the reports table for retrieving information.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
excludeDummiesTipText()
Returns the tip text for this property.boolean
getExcludeDummies()
Returns whether data containers with reports flagged as dummies are excluded or not.boolean
getOnlyDummies()
Returns whether only data containers with reports flagged as dummies are included or not.String
onlyDummiesTipText()
Returns the tip text for this property.void
setExcludeDummies(boolean value)
Sets whether to exclude data containers with reports flagged as dummies or not.void
setOnlyDummies(boolean value)
Sets whether to include only data containers with reports flagged as dummies or not.
-
-
-
Method Detail
-
setExcludeDummies
void setExcludeDummies(boolean value)
Sets whether to exclude data containers with reports flagged as dummies or not.- Parameters:
value
- if true then dummies are excluded
-
getExcludeDummies
boolean getExcludeDummies()
Returns whether data containers with reports flagged as dummies are excluded or not.- Returns:
- true if dummies are to be excluded
-
excludeDummiesTipText
String excludeDummiesTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setOnlyDummies
void setOnlyDummies(boolean value)
Sets whether to include only data containers with reports flagged as dummies or not.- Parameters:
value
- if true then only dummies are included
-
getOnlyDummies
boolean getOnlyDummies()
Returns whether only data containers with reports flagged as dummies are included or not.- Returns:
- true if only dummies are to be included
-
onlyDummiesTipText
String onlyDummiesTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-