Uses of Class
net.sf.jett.formula.CellRef

Packages that use CellRef
net.sf.jett.formula Provides support for JETT Formulas and CellReferences. 
net.sf.jett.model Provides value objects for JETT processing and enumerated objects for things like style values. 
net.sf.jett.parser Provides classes for scanning and parsing any text-based value in JETT. 
net.sf.jett.util Provides utility functionality for JETT. 
 

Uses of CellRef in net.sf.jett.formula
 

Subclasses of CellRef in net.sf.jett.formula
 class CellRefRange
          A CellRefRange is a CellRef, representing a range.
 

Methods in net.sf.jett.formula that return CellRef
 CellRef CellRefRange.getRangeEndCellRef()
          Returns the end of the cell range.
 

Methods in net.sf.jett.formula that return types with arguments of type CellRef
 java.util.List<CellRef> Formula.getCellRefs()
          Returns the List of CellRefs.
 

Methods in net.sf.jett.formula with parameters of type CellRef
 int CellRef.compareTo(CellRef other)
          Compares this CellRef to another CellRef.
 void CellRefRange.setRangeEndCellRef(CellRef rangeEnd)
          Sets the end of the cell range with another CellRef.
 

Constructor parameters in net.sf.jett.formula with type arguments of type CellRef
Formula(java.lang.String formulaText, java.util.List<CellRef> cellRefs)
          Creates a Formula with the given formula text and the given List of CellRefs.
 

Uses of CellRef in net.sf.jett.model
 

Methods in net.sf.jett.model that return types with arguments of type CellRef
 java.util.Map<java.lang.String,java.util.List<CellRef>> WorkbookContext.getCellRefMap()
          Returns the cell reference map, a Map of cell key strings to Lists of CellRefs.
 

Method parameters in net.sf.jett.model with type arguments of type CellRef
 void WorkbookContext.setCellRefMap(java.util.Map<java.lang.String,java.util.List<CellRef>> cellRefMap)
          Sets the cell reference map, a Map of cell key strings to Lists of CellRefs.
 

Uses of CellRef in net.sf.jett.parser
 

Methods in net.sf.jett.parser that return types with arguments of type CellRef
 java.util.List<CellRef> FormulaParser.getCellReferences()
          Returns a List of CellRefs that this parser found in the formula text.
 

Uses of CellRef in net.sf.jett.util
 

Methods in net.sf.jett.util that return types with arguments of type CellRef
static java.util.Map<java.lang.String,java.util.List<CellRef>> FormulaUtil.createCellRefMap(java.util.Map<java.lang.String,Formula> formulaMap)
          Finds unique cell references in all Formulas in the given formula map.
 

Method parameters in net.sf.jett.util with type arguments of type CellRef
static void FormulaUtil.copyCellReferencesInRange(java.lang.String sheetName, java.util.Map<java.lang.String,java.util.List<CellRef>> cellRefMap, int left, int right, int top, int bottom, int numCols, int numRows, java.lang.String currSuffix, java.lang.String newSuffix)
          Copies cell references that are on the same Sheet in the given cell reference map by the given number of rows and/or columns (usually one of those two will be zero).
static void FormulaUtil.findAndReplaceCellRanges(java.util.Map<java.lang.String,java.util.List<CellRef>> cellRefMap)
          Examines all CellRefs in each List.
static void FormulaUtil.shiftCellReferencesInRange(java.lang.String sheetName, java.util.Map<java.lang.String,java.util.List<CellRef>> cellRefMap, int left, int right, int top, int bottom, int numCols, int numRows, boolean remove, boolean add)
          Shifts all CellRefs that are in range and on the same Sheet by the given number of rows and/or columns (usually one of those two will be zero).
 



Copyright © 2012-2013 Jett Team. All Rights Reserved.