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

18 lines
598 B
Java
Raw Normal View History

2017-03-17 23:57:48 +00:00
package com.bytezone.diskbrowser.visicalc;
2020-02-10 11:05:40 +00:00
// -----------------------------------------------------------------------------------//
class True extends ConstantFunction
// -----------------------------------------------------------------------------------//
2017-03-17 23:57:48 +00:00
{
2020-02-10 11:05:40 +00:00
// ---------------------------------------------------------------------------------//
True (Cell cell, String text)
2020-02-10 11:05:40 +00:00
// ---------------------------------------------------------------------------------//
2017-03-17 23:57:48 +00:00
{
super (cell, text);
2017-03-17 23:57:48 +00:00
2017-03-18 09:21:11 +00:00
assert text.equals ("@TRUE") : text;
2017-03-23 13:30:41 +00:00
bool = true;
valueType = ValueType.BOOLEAN;
2017-03-17 23:57:48 +00:00
}
}