Interface RestrictionPanel
-
- All Known Implementing Classes:
BBoxRestrictionPanel
,OpenAndCloseStateRestrictionPanel
,TimeRestrictionPanel
,UserRestrictionPanel
public interface RestrictionPanel
Defines a panel to apply a restriction to the changeset query.- Since:
- 11326
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
displayMessageIfInvalid()
Display error message if a field is invalid.void
fillInQuery(ChangesetQuery query)
Sets the query restrictions onquery
.boolean
isValidChangesetQuery()
Determines if the changeset query is valid.
-
-
-
Method Detail
-
isValidChangesetQuery
boolean isValidChangesetQuery()
Determines if the changeset query is valid.- Returns:
true
if the changeset query is valid.
-
fillInQuery
void fillInQuery(ChangesetQuery query)
Sets the query restrictions onquery
.- Parameters:
query
- query to fill
-
displayMessageIfInvalid
void displayMessageIfInvalid()
Display error message if a field is invalid.
-
-