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