Package com.storedobject.ui
Class Test.R
- All Implemented Interfaces:
Executable,ContentProducer,ContentType,RequiresTransactionManager,Closeable,AutoCloseable,Runnable
- Enclosing class:
Test
-
Nested Class Summary
Nested classes/interfaces inherited from class com.storedobject.office.ODT
ODT.Table, ODT.TableRow -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidCustomizes the given table during the content production process.protected booleanisCustomTable(String tableName) Determines if the given table name corresponds to a custom table.intintMethods inherited from class com.storedobject.office.ODTReport
execute, getDevice, getEntity, getReportFormat, log, setEntity, viewMethods inherited from class com.storedobject.office.ODT
close, debug, getContent, getContentType, getException, getFileExtension, getFileName, getFiller, getTransactionManager, includeSection, includeTable, isRawOutput, produce, ready, reportingIteratorValue, setFiller, setIterator, setRawOutput, setTemplate, setTemplate, setTransactionManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.storedobject.core.ContentProducer
abort, extractContent, getError, getStreamData, getStreamDataProvider, getSystemEntity, saveTo, saveTo, saveTo, saveToMethods inherited from interface com.storedobject.core.ContentType
getLink, getMimeType, isAudio, isHTML, isImage, isLink, isMedia, isPDF, isText, isVideoMethods inherited from interface com.storedobject.common.Executable
act, run
-
Constructor Details
-
R
-
-
Method Details
-
fill
-
fill
-
rowCount
-
rowStart
-
isCustomTable
Description copied from class:ODTDetermines if the given table name corresponds to a custom table. For custom tables, the row replication process will be skipped. Instead,ODT.customize(Table)method will be called to customize the table.- Overrides:
isCustomTablein classODT<Object>- Parameters:
tableName- The name of the table to be checked.- Returns:
- True if the given table is a custom table, false otherwise.
-
customize
Description copied from class:ODTCustomizes the given table during the content production process. This method can be overridden to provide specific customizations for a table before it is included in the output. Customizations may involve modifying rows, adding new rows, or altering the table structure as required.- Overrides:
customizein classODT<Object>- Parameters:
table- The table to be customized, represented as an instance ofODT.Table. This object provides access to table rows and allows row manipulation such as addition, copying, or modification.- Throws:
Exception- If any error occurs during the customization process.
-