first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
package jxl.biff.formula;
import common.Assert;
import java.util.Stack;
abstract class StringOperator extends Operator {
public void getOperands(Stack s) {
Assert.verify(false);
}
int getPrecedence() {
Assert.verify(false);
return 0;
}
byte[] getBytes() {
Assert.verify(false);
return null;
}
void getString(StringBuffer buf) {
Assert.verify(false);
}
public void adjustRelativeCellReferences(int colAdjust, int rowAdjust) {
Assert.verify(false);
}
void columnInserted(int sheetIndex, int col, boolean currentSheet) {
Assert.verify(false);
}
void columnRemoved(int sheetIndex, int col, boolean currentSheet) {
Assert.verify(false);
}
void rowInserted(int sheetIndex, int row, boolean currentSheet) {
Assert.verify(false);
}
void rowRemoved(int sheetIndex, int row, boolean currentSheet) {
Assert.verify(false);
}
abstract Operator getBinaryOperator();
abstract Operator getUnaryOperator();
}