* @exception IllegalActionException If there is no director.
*/
public void fire() throws IllegalActionException {
super.fire();
FixToken in = (FixToken) input.get(0);
FixPoint value = in.fixValue();
output.send(0, new DoubleToken(value.doubleValue()));
}
/** Return false if the input port has no token, otherwise return
* what the superclass returns (presumably true).