mirror of
https://github.com/dmolony/DiskBrowser.git
synced 2024-12-02 16:49:18 +00:00
18 lines
602 B
Java
18 lines
602 B
Java
package com.bytezone.diskbrowser.visicalc;
|
|
|
|
// -----------------------------------------------------------------------------------//
|
|
class False extends ConstantFunction
|
|
// -----------------------------------------------------------------------------------//
|
|
{
|
|
// ---------------------------------------------------------------------------------//
|
|
False (Cell cell, String text)
|
|
// ---------------------------------------------------------------------------------//
|
|
{
|
|
super (cell, text);
|
|
|
|
assert text.equals ("@FALSE") : text;
|
|
|
|
bool = false;
|
|
valueType = ValueType.BOOLEAN;
|
|
}
|
|
} |