mirror of
https://github.com/dmolony/DiskBrowser.git
synced 2024-11-05 10:04:55 +00:00
16 lines
213 B
Java
16 lines
213 B
Java
|
package com.bytezone.diskbrowser.visicalc;
|
||
|
|
||
|
public class Int extends Function
|
||
|
{
|
||
|
|
||
|
Int (Sheet parent, String text)
|
||
|
{
|
||
|
super (parent, text);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public double getValue ()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
}
|