Interface IContext
-
- All Known Implementing Classes:
GenericContext
,UnknownContext
public interface IContext
The class that determines weather event should be processed or not. Is calculated by theContextManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isAllowed(AbstractContextBasedITextEvent event)
Determines weather event should be processed or not.
-
-
-
Method Detail
-
isAllowed
boolean isAllowed(AbstractContextBasedITextEvent event)
Determines weather event should be processed or not.- Parameters:
event
- is an event to test- Returns:
- true if event is allowed by the actual context and false otherwise
-
-