Uses of Class
com.extentech.ExtenXLS.WorkBookHandle

Packages that use WorkBookHandle
com.extentech.ExtenXLS The ExtenXLS package contains the primary classes for working with spreadsheets. 
com.extentech.ExtenXLS.binder The ExtenXLS binder package contains the CellBinder API which automates mapping of data to spreadsheets. 
com.extentech.ExtenXLS.eventui The ExtenXLS UI package contains swing UI spreadsheet components. 
com.extentech.ExtenXLS.ui The ExtenXLS UI package contains swing UI spreadsheet components. 
com.extentech.ExtenXLS.web The ExtenXLS.web package contains ExtenXLS Spreadsheet classes enhanced with web and database persistence capabilities. 
 

Uses of WorkBookHandle in com.extentech.ExtenXLS
 

Subclasses of WorkBookHandle in com.extentech.ExtenXLS
 class EncryptedWorkBookHandle
          EncryptedWorkBookHandle is a WorkBookHandle that manages encrypted files.
 class EncryptedWorkBookWritableParser
          EncryptedWorkBookWritableParser is a type of WorkBookWritableParser that handles encrypting the output file.
 class WorkBookParser
          A READ-ONLY WorkBookHandle implementation which handles high-performance spreadsheet reading using a parse-event driven model.
 class WorkBookWritableParser
          A WorkBookHandle implementation which handles high-performance spreadsheet reading using a parse-event driven model.
 

Methods in com.extentech.ExtenXLS that return WorkBookHandle
 WorkBookHandle WorkBookWritableParser.getNoSheetWorkBook()
           
 WorkBookHandle WorkBookParser.getNoSheetWorkBook()
           
 WorkBookHandle WorkBookHandle.getNoSheetWorkBook()
          Returns a WorkBookHandle containing an empty version of this WorkBook.
 WorkBookHandle WorkBook.getNoSheetWorkBook()
          Deprecated. Returns a WorkBookHandle containing an empty version of this WorkBook.
 WorkBookHandle WorkSheetHandle.getWorkBook()
          Returns the WorkBookHandle for this Sheet
 

Methods in com.extentech.ExtenXLS with parameters of type WorkBookHandle
static int FormatHandle.addFont(com.extentech.formats.XLS.Font f, WorkBookHandle bk)
          adds a font to the global font store only if exact font is not already present
 boolean WorkBookWritableParser.addSheetFromWorkBook(WorkBookHandle sourceBook, java.lang.String sourceSheetName, java.lang.String destSheetName)
          Deprecated.  
 boolean WorkBookParser.addSheetFromWorkBook(WorkBookHandle sourceBook, java.lang.String sourceSheetName, java.lang.String destSheetName)
          Deprecated.  
 boolean WorkBookHandle.addSheetFromWorkBook(WorkBookHandle sourceBook, java.lang.String sourceSheetName, java.lang.String destSheetName)
          Deprecated. - use addWorkSheet(WorkSheetHandle sht, String NewSheetName){
 boolean WorkBook.addSheetFromWorkBook(WorkBookHandle sourceBook, java.lang.String sourceSheetName, java.lang.String destSheetName)
          Deprecated.  
 boolean WorkBookWritableParser.addSheetFromWorkBookWithFormatting(WorkBookHandle sourceBook, java.lang.String sourceSheetName, java.lang.String destSheetName)
          Deprecated.  
 boolean WorkBookParser.addSheetFromWorkBookWithFormatting(WorkBookHandle sourceBook, java.lang.String sourceSheetName, java.lang.String destSheetName)
          Deprecated.  
 boolean WorkBookHandle.addSheetFromWorkBookWithFormatting(WorkBookHandle sourceBook, java.lang.String sourceSheetName, java.lang.String destSheetName)
          Deprecated. - use addWorkSheet(WorkSheetHandle sht, String NewSheetName){
static CellRangeRef CellRangeRef.fromA1(java.lang.String reference, WorkBookHandle book)
          Convenience method combining CellRangeRef.fromA1(String) and CellRangeRef.resolve(WorkBookHandle).
static CellHandle[] CellRange.getCells(java.lang.String range, WorkBookHandle wbh)
          returns the cells for a given range
static version
 DataObject WorkBookBeanFactory.getInfoBeansFromWorkBook(WorkBookHandle bk, ExtenXLSReportFactory rptFactory)
          This method retrieves values from WorkBookHandles and instantiates an DataObject from the Cell contents.
static WorkBook ExtenXLS.getXLS(WorkBookHandle bk, java.lang.Object xmlsource)
          Convert an XML WorkBook file to BIFF8 (native XLS) WorkBook Input roughly conforms to XMLSS Spec.
 void CellRangeRef.resolve(WorkBookHandle book)
          Resolves sheet names into sheet handles against the given book.
static void EncryptedWorkBookHandle.writeAndEncrypt(WorkBookHandle book, java.io.OutputStream out, java.lang.String password)
          A static utility method to write a xlsx workbook in 128 bit AES encryption to the OutputStream provided.
 

Constructors in com.extentech.ExtenXLS with parameters of type WorkBookHandle
ChartHandle(com.extentech.formats.XLS.charts.Chart c, WorkBookHandle wb)
          Constructor which creates a new ChartHandle from an existing Chart Object
EncryptedWorkBookHandle(WorkBookHandle workbook, java.lang.String password)
          Constructor to convert a WorkBookHandle into an EncryptedWorkBookHandle.
NameHandle(java.lang.String name, java.lang.String location, WorkBookHandle book)
          Create a new named range in the workbook
NameHandle(java.lang.String namestr, WorkBookHandle myb)
          Deprecated.  
 

Uses of WorkBookHandle in com.extentech.ExtenXLS.binder
 

Methods in com.extentech.ExtenXLS.binder with parameters of type WorkBookHandle
static void CellBinderUtils.createRDF(WorkBookHandle bk, java.lang.String rdfName, java.util.List cells, java.lang.Object mappings, java.util.HashMap datasources, java.util.HashMap vars)
          Create an RDF from a template, a list of ranges and a data object of mappings
static java.util.HashMap CellBinderUtils.getDataMarkers(WorkBookHandle wb, java.lang.String matchPattern)
          create 2 List objects from workbook - a list of ranges and a list of mappings This is used with OfficeWriter-style mappings
static java.util.List CellBinderUtils.getNamedRangesFromWorkBook(WorkBookHandle wb)
          get a List of named range mappings from a workbook
static void CellBinderUtils.getRDFFromDataMarkers(WorkBookHandle book, java.lang.String matchPattern, java.util.HashMap datasources, java.util.HashMap vars)
           
static void CellBinderUtils.getRDFFromDO(WorkBookHandle book, java.lang.Object dob, java.util.HashMap datasources)
           
static void SimpleCellBinder.testWrite(WorkBookHandle b, java.lang.String nm)
          write out an xls file
 

Uses of WorkBookHandle in com.extentech.ExtenXLS.eventui
 

Fields in com.extentech.ExtenXLS.eventui declared as WorkBookHandle
 WorkBookHandle ExtenXLSPanel.book
           
 

Methods in com.extentech.ExtenXLS.eventui that return WorkBookHandle
 WorkBookHandle WorkBookPanel.getWorkBook()
          Retrieves the WorkBookHandle currently being displayed.
 WorkBookHandle WorkBookModel.getWorkBook()
          Returns the workbook this model wraps.
 

Methods in com.extentech.ExtenXLS.eventui with parameters of type WorkBookHandle
 void WorkBookPanel.initSheets(WorkBookHandle book)
          Deprecated. Use WorkBookPanel.load(WorkBookHandle) instead.
 void WorkBookPanel.load(WorkBookHandle book)
           
 

Constructors in com.extentech.ExtenXLS.eventui with parameters of type WorkBookHandle
WorkBookModel(WorkBookHandle target)
          Creates a model of the given workbook.
WorkBookModel(WorkBookHandle target, int active)
          Creates a model of the given workbook with the given sheet active.
 

Uses of WorkBookHandle in com.extentech.ExtenXLS.ui
 

Fields in com.extentech.ExtenXLS.ui declared as WorkBookHandle
 WorkBookHandle WorkBookPanel.book
           
 WorkBookHandle ExtenXLSPanel.book
           
 

Methods in com.extentech.ExtenXLS.ui that return WorkBookHandle
 WorkBookHandle WorkBookPanel.getWorkBook()
          Get the current WorkBookHandle
 

Methods in com.extentech.ExtenXLS.ui with parameters of type WorkBookHandle
 void WorkBookPanel.initSheets(WorkBookHandle bk)
          initialize the worksheet tables with all sheets
 void WorkBookPanel.initSheets(WorkBookHandle bk, int shtx)
          initialize the worksheet tables
 

Uses of WorkBookHandle in com.extentech.ExtenXLS.web
 

Methods in com.extentech.ExtenXLS.web that return WorkBookHandle
 WorkBookHandle MemeWorkBook.getBook()
          get the underlying WorkBookHandle delegate
 WorkBookHandle MemeWorkBook.getNoSheetWorkBook()
           
 WorkBookHandle MemeWorkBook.getTarget()
          Returns the wrapped WorkBookHandle.
 

Methods in com.extentech.ExtenXLS.web with parameters of type WorkBookHandle
 boolean MemeWorkBook.addSheetFromWorkBook(WorkBookHandle sourceBook, java.lang.String sourceSheetName, java.lang.String destSheetName)
          Deprecated.  
 boolean MemeWorkBook.addSheetFromWorkBookWithFormatting(WorkBookHandle sourceBook, java.lang.String sourceSheetName, java.lang.String destSheetName)
          Deprecated.  
 

Constructors in com.extentech.ExtenXLS.web with parameters of type WorkBookHandle
MemeWorkBook(java.lang.Object memeId, WorkBookHandle theBook)
          Create a new MemeWorkBook from the workbook passed in and set to the meme ID
MemeWorkBook(WorkBookHandle book)
           
WebWorkBook(java.lang.Object memeId, WorkBookHandle theBook)
          Create a new MemeWorkBook from the workbook passed in and set to the meme ID
WebWorkBook(WorkBookHandle book)
           
 



Copyright © 2011 Extentech Inc. All Rights Reserved.