mirror of
https://github.com/dmolony/DiskBrowser.git
synced 2024-11-05 10:04:55 +00:00
17 lines
231 B
Java
17 lines
231 B
Java
package com.bytezone.diskbrowser.visicalc;
|
|
|
|
class And extends Function
|
|
{
|
|
|
|
public And (Sheet parent, String text)
|
|
{
|
|
super (parent, text);
|
|
}
|
|
|
|
@Override
|
|
public Value calculate ()
|
|
{
|
|
value = 0;
|
|
return this;
|
|
}
|
|
} |