* @param comp The UIComponent
*
* @return true if children are to be rendered, false otherwise.
*/
public boolean encodeThis(FacesContext ctx, UIComponent comp) {
PermissionChecker checker = new PermissionChecker(
this, comp, (_doubleEval) ?
((String) getEvaluatedOption(ctx, "condition", comp)) :
((String) getOption("condition")));
return checker.hasPermission();
}