/[Apache-SVN]
ViewVC logotype

Revision 353315


Jump to revision: Previous Next
Author: avik
Date: Sat Aug 23 19:40:05 2003 UTC (20 years, 8 months ago)
Changed paths: 42
Log Message:
Facility to use Macro functions in formulas.
Major functionality upgrade, thanks to Paul Krause
Some of the Named Range and Area3d functionality can now be enhanced using the features of this patch.


Changed paths

Path Details
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/dev/FormulaViewer.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/model/FormulaParser.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/NameRecord.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/AbstractFunctionPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/AddPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/Area3DPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/AreaPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/AttrPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/BoolPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/ConcatPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/DividePtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/EqualPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/ExpPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/GreaterEqualPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/GreaterThanPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/IntPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/LessEqualPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/LessThanPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/MemErrPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/MemFuncPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/MissingArgPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/MultiplyPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/NamePtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/NameXPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/NotEqualPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/NumberPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/ParenthesisPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/PowerPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/Ptg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/Ref3DPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/ReferencePtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/StringPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/SubtractPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/UnaryMinusPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/UnaryPlusPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/UnionPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/record/formula/UnknownPtg.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/usermodel/HSSFName.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/testcases/org/apache/poi/hssf/model/TestFormulaParser.java modified , text changed
Directoryjakarta/poi/branches/REL_2_BRANCH/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java modified , text changed

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26