Uses of Class
net.sf.jett.tag.TagContext

Packages that use TagContext
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. 
 

Uses of TagContext in net.sf.jett.tag
 

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

Methods in net.sf.jett.tag with parameters of type TagContext
protected  void MultiForEachTag.afterBlockProcessed(TagContext context, Block currBlock, java.lang.Object item, int index)
          Remove the values from the List of collection item values from the Map of beans.
protected  void ForTag.afterBlockProcessed(TagContext context, Block currBlock, java.lang.Object item, int index)
          Remove the index "item" from the Map of beans.
protected  void ForEachTag.afterBlockProcessed(TagContext context, Block currBlock, java.lang.Object item, int index)
          Remove the Iterator item from the Map of beans.
protected abstract  void BaseLoopTag.afterBlockProcessed(TagContext context, Block currBlock, java.lang.Object item, int index)
          This method is called once per iteration loop, immediately after the given Block is processed.
protected  void MultiForEachTag.beforeBlockProcessed(TagContext context, Block currBlock, java.lang.Object item, int index)
          Place the values from the List of collection item values into the Map of beans.
protected  void ForTag.beforeBlockProcessed(TagContext context, Block currBlock, java.lang.Object item, int index)
          Place the index "item" into the Map of beans.
protected  void ForEachTag.beforeBlockProcessed(TagContext context, Block currBlock, java.lang.Object item, int index)
          Place the Iterator item into the Map of beans.
protected abstract  void BaseLoopTag.beforeBlockProcessed(TagContext context, Block currBlock, java.lang.Object item, int index)
          This method is called once per iteration loop, immediately before the given Block is processed.
 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.setContext(TagContext context)
          Sets the TagContext to which the Tag is associated.
 void BaseTag.setContext(TagContext context)
          Sets the TagContext to which the Tag is associated.
 

Uses of TagContext in net.sf.jett.transform
 

Methods in net.sf.jett.transform with parameters of type TagContext
 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 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.
 



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