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

45 lines
1.1 KiB
Java
Raw Normal View History

2016-03-09 10:38:53 +00:00
package com.bytezone.diskbrowser.visicalc;
2016-03-12 22:38:03 +00:00
class If extends Function
2016-03-09 10:38:53 +00:00
{
2016-03-12 22:33:18 +00:00
private final Condition condition;
2016-03-09 10:38:53 +00:00
private final String textTrue;
private final String textFalse;
2016-03-10 02:39:23 +00:00
private Expression expTrue;
private Expression expFalse;
2016-03-09 10:38:53 +00:00
public If (Sheet parent, String text)
{
super (parent, text);
2016-03-12 22:33:18 +00:00
int pos1 = functionText.indexOf (',');
int pos2 = functionText.indexOf (',', pos1 + 1);
condition = new Condition (parent, functionText.substring (0, pos1));
textTrue = functionText.substring (pos1 + 1, pos2);
textFalse = functionText.substring (pos2 + 1);
2016-03-09 10:38:53 +00:00
}
@Override
public double getValue ()
{
2016-03-12 22:33:18 +00:00
if (condition.getResult ())
2016-03-10 02:39:23 +00:00
{
if (expTrue == null)
expTrue = new Expression (parent, textTrue);
return expTrue.getValue ();
}
else
{
if (expFalse == null)
expFalse = new Expression (parent, textFalse);
return expFalse.getValue ();
}
2016-03-09 10:38:53 +00:00
}
2016-03-14 08:58:54 +00:00
@Override
public String toString ()
{
return String.format ("[IF:%s, True:%s, False:%s]", condition, textTrue, textFalse);
}
2016-03-09 10:38:53 +00:00
}