dmolony-DiskBrowser/src/com/bytezone/diskbrowser/visicalc/IsError.java
Denis Molony d09df374dc tidying
2017-03-26 20:16:36 +11:00

18 lines
340 B
Java

package com.bytezone.diskbrowser.visicalc;
class IsError extends BooleanFunction
{
public IsError (Cell cell, String text)
{
super (cell, text);
assert text.startsWith ("@ISERROR(") : text;
}
@Override
public void calculate ()
{
source.calculate ();
bool = source.getValueResult () == ValueResult.ERROR;
}
}