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

18 lines
598 B
Java

package com.bytezone.diskbrowser.visicalc;
// -----------------------------------------------------------------------------------//
class True extends ConstantFunction
// -----------------------------------------------------------------------------------//
{
// ---------------------------------------------------------------------------------//
True (Cell cell, String text)
// ---------------------------------------------------------------------------------//
{
super (cell, text);
assert text.equals ("@TRUE") : text;
bool = true;
valueType = ValueType.BOOLEAN;
}
}