Uses of Class
net.sf.jett.model.WorkbookContext

Packages that use WorkbookContext
net.sf.jett.tag Provides Tag functionality, including the Tag interface and all built-in tag classes, plus the TagLibrary interface and TagLibraryRegistry classes for custom tag creation and registration. 
net.sf.jett.transform Provides the classes and API necessary to transform pre-existing Excel template spreadsheets (.xls and .xlsx are supported) into new spreadsheets that are fully populated with user data. 
net.sf.jett.util Provides utility functionality for JETT. 
 

Uses of WorkbookContext in net.sf.jett.tag
 

Methods in net.sf.jett.tag that return WorkbookContext
 WorkbookContext Tag.getWorkbookContext()
          Returns the WorkbookContext to which the Tag is associated.
 WorkbookContext BaseTag.getWorkbookContext()
          Returns the WorkbookContext to which the Tag is associated.
 

Methods in net.sf.jett.tag with parameters of type WorkbookContext
 Tag TagLibraryRegistry.createTag(TagParser parser, TagContext context, WorkbookContext workbookContext)
          Creates a Tag, looking in a specific namespace for a class matching a specific tag name.
 void Tag.setWorkbookContext(WorkbookContext context)
          Sets the WorkbookContext to which the Tag is associated.
 void BaseTag.setWorkbookContext(WorkbookContext context)
          Sets the WorkbookContext to which the Tag is associated.
 

Uses of WorkbookContext in net.sf.jett.transform
 

Methods in net.sf.jett.transform with parameters of type WorkbookContext
 void SheetTransformer.replaceFormulas(org.apache.poi.ss.usermodel.Sheet sheet, WorkbookContext context)
          Replace all Formulas found in the given Sheet with Excel formulas.
 void CollectionsTransformer.transform(org.apache.poi.ss.usermodel.Cell cell, WorkbookContext workbookContext, TagContext cellContext)
          Transform a Block of Cells around the given Cell, which has declared implicit collection processing behavior using the given collection expression.
 boolean CellTransformer.transform(org.apache.poi.ss.usermodel.Cell cell, WorkbookContext workbookContext, TagContext cellContext)
          Transforms the given Cell, using the given Map of bean names to bean objects.
 void SheetTransformer.transform(org.apache.poi.ss.usermodel.Sheet sheet, WorkbookContext context, java.util.Map<java.lang.String,java.lang.Object> beans)
          Transforms the given Sheet, using the given Map of bean names to bean objects.
 void BlockTransformer.transform(TagContext context, WorkbookContext workbookContext)
          Transforms the given Sheet, using the given Map of bean names to bean objects.
 void BlockTransformer.transform(TagContext context, WorkbookContext workbookContext, boolean process)
          Transforms the given Sheet, using the given Map of bean names to bean objects.
 

Uses of WorkbookContext in net.sf.jett.util
 

Methods in net.sf.jett.util with parameters of type WorkbookContext
static void SheetUtil.clearBlock(org.apache.poi.ss.usermodel.Sheet sheet, Block block, WorkbookContext context)
          Blanks out all Cells found inside the given Block on the given Sheet.
static Block SheetUtil.copyBlock(org.apache.poi.ss.usermodel.Sheet sheet, Block block, WorkbookContext context, int numBlocksAway)
          Copies an entire Block the given number of blocks away on the given Sheet.
static java.lang.String FormulaUtil.createExcelFormulaString(java.lang.String formulaText, Formula formula, java.lang.String sheetName, WorkbookContext context)
          Replaces cell references in the given formula text with the translated cell references, and returns the formula string.
static void SheetUtil.deleteBlock(org.apache.poi.ss.usermodel.Sheet sheet, Block block, WorkbookContext context)
          Removes all Cells found inside the given Block on the given Sheet.
static void SheetUtil.removeBlock(org.apache.poi.ss.usermodel.Sheet sheet, Block block, WorkbookContext context)
          Removes the given Block of Cells from the given Sheet.
static void SheetUtil.shiftForBlock(org.apache.poi.ss.usermodel.Sheet sheet, Block block, WorkbookContext context, int numBlocksAway)
          Shifts Cells out of the way.
 



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