if (this._selectionMode != null) {
return this._selectionMode;
}
ValueExpression ve = getValueExpression("selectionMode");
if (ve != null) {
SelectionMode value = null;
try {
value = (SelectionMode) ve.getValue(getFacesContext().getELContext());
} catch (ELException e) {
throw new FacesException(e);