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

21 lines
785 B
Java
Raw Normal View History

2017-03-20 01:45:14 +00:00
package com.bytezone.diskbrowser.visicalc;
2020-02-10 11:05:40 +00:00
// -----------------------------------------------------------------------------------//
abstract class ConstantFunction extends Function
// -----------------------------------------------------------------------------------//
2017-03-20 01:45:14 +00:00
{
2020-02-10 11:05:40 +00:00
// ---------------------------------------------------------------------------------//
ConstantFunction (Cell cell, String text)
// ---------------------------------------------------------------------------------//
2017-03-20 01:45:14 +00:00
{
super (cell, text);
}
2017-03-23 13:30:41 +00:00
2020-02-10 11:05:40 +00:00
// ---------------------------------------------------------------------------------//
2017-03-23 13:30:41 +00:00
@Override
public String getType ()
2020-02-10 11:05:40 +00:00
// ---------------------------------------------------------------------------------//
2017-03-23 13:30:41 +00:00
{
return "ConstantFunction";
}
2017-03-20 01:45:14 +00:00
}