8 lines
150 B
Java
8 lines
150 B
Java
package jxl;
|
|
|
|
import jxl.biff.formula.FormulaException;
|
|
|
|
public interface FormulaCell extends Cell {
|
|
String getFormula() throws FormulaException;
|
|
}
|