Sets an operator attribute from the name of the operator. @param operator The name of the operator to set in the object. @throws PrerequisiteException throws an exception if it can't locate the operator.
(final String operator)
| 153 | * @throws PrerequisiteException throws an exception if it can't locate the operator. |
| 154 | */ |
| 155 | public void setOperator(final String operator) throws PrerequisiteException |
| 156 | { |
| 157 | this.operator = PrerequisiteOperator.getOperatorByName(operator); |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * @param operator The operator to set. |