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

18 lines
311 B
Java
Raw Normal View History

2016-03-15 04:40:57 +00:00
package com.bytezone.diskbrowser.visicalc;
public class Int extends Function
{
Int (Sheet parent, String text)
{
super (parent, text);
}
@Override
2016-03-17 04:40:43 +00:00
public Value calculate ()
2016-03-15 04:40:57 +00:00
{
2016-03-16 06:15:39 +00:00
Expression exp = new Expression (parent, functionText);
value = (int) exp.getValue ();
2016-03-17 04:40:43 +00:00
return this;
2016-03-15 04:40:57 +00:00
}
}