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

17 lines
231 B
Java
Raw Normal View History

2016-03-10 09:21:47 +00:00
package com.bytezone.diskbrowser.visicalc;
2016-03-12 22:38:03 +00:00
class And extends Function
2016-03-10 09:21:47 +00:00
{
public And (Sheet parent, String text)
{
super (parent, text);
}
@Override
2016-03-17 04:40:43 +00:00
public Value calculate ()
2016-03-10 09:21:47 +00:00
{
2016-03-16 06:15:39 +00:00
value = 0;
2016-03-17 04:40:43 +00:00
return this;
2016-03-10 09:21:47 +00:00
}
}