dmolony-DiskBrowser/src/com/bytezone/diskbrowser/visicalc/Abs.java

16 lines
277 B
Java
Raw Normal View History

2016-03-15 04:40:57 +00:00
package com.bytezone.diskbrowser.visicalc;
2017-03-19 23:21:10 +00:00
public class Abs extends ValueFunction
2016-03-15 04:40:57 +00:00
{
Abs (Cell cell, String text)
2016-03-15 04:40:57 +00:00
{
super (cell, text);
2017-03-18 09:21:11 +00:00
assert text.startsWith ("@ABS(") : text;
2016-03-15 04:40:57 +00:00
}
2016-03-15 20:06:04 +00:00
@Override
2017-03-19 23:21:10 +00:00
void setValue ()
2016-03-15 04:40:57 +00:00
{
2017-02-25 03:56:22 +00:00
value = Math.abs (source.getValue ());
2016-03-15 04:40:57 +00:00
}
}