*
* @return {@link #getMatcher()} if it is not <code>null</code>, else returns
* {@link WidgetMatcherFactory#nullMatcher()}.
*/
protected IMatcher matcher() {
IMatcher matcher = getMatcher();
if (matcher == null)
return WidgetMatcherFactory.nullMatcher();
return matcher;
}