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

22 lines
819 B
Java

package com.bytezone.diskbrowser.visicalc;
// -----------------------------------------------------------------------------------//
public class Abs extends ValueFunction
// -----------------------------------------------------------------------------------//
{
// ---------------------------------------------------------------------------------//
Abs (Cell cell, String text)
// ---------------------------------------------------------------------------------//
{
super (cell, text);
assert text.startsWith ("@ABS(") : text;
}
// ---------------------------------------------------------------------------------//
@Override
double calculateValue ()
// ---------------------------------------------------------------------------------//
{
return Math.abs (source.getDouble ());
}
}