* @return The value of the "evaluatedValue" parameter.
* @exception IllegalActionException If the model does not have a
* settable attribute named "evaluatedValue".
*/
private boolean _getResult() throws IllegalActionException {
Attribute attribute = _model.getAttribute("evaluatedValue");
if (attribute instanceof Variable) {
Token t = ((Variable) attribute).getToken();
return ((BooleanToken) t).booleanValue();
} else if (attribute instanceof Settable) {