Package com.storedobject.ui
Class Test.F
-
Method Summary
Modifier and TypeMethodDescriptionvoidcustomizeImage(ODT.Image image) Allows customization of an image before it is generated.voidcustomizeTable(ODT.Table table) Allows customization of a table before it is generated.evaluate(ODT.Element element, String variableName) Evaluates the given variable to determine a corresponding value.Methods inherited from class com.storedobject.office.Filler
createLinkData, customizeSection, evaluate, execute, execute, getODT, getReportingObject, getTransactionManager, populateLinkTable, setImageCustomizer, setReportingObject, setSectionCustomizer, setTableCustomizerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.storedobject.common.Executable
act, run
-
Method Details
-
customizeTable
Description copied from class:FillerAllows customization of a table before it is generated.Override this method to control table output, row counts, blank rows, or remove the table entirely.
Note: If a customizer is set, it will be invoked to perform table-specific adjustments.
- Overrides:
customizeTablein classFiller<Object>- Parameters:
table- The table being customized.
-
customizeImage
Description copied from class:FillerAllows customization of an image before it is generated.Override this method to modify image handling or remove the image entirely.
Note: If a customizer is set, it will be invoked to perform image-specific adjustments.
- Overrides:
customizeImagein classFiller<Object>- Parameters:
image- The image being customized.
-
evaluate
Description copied from class:FillerEvaluates the given variable to determine a corresponding value. The method handles special cases for ODT.Image elements and elements not associated with a table cell. If a reporting object is available, the evaluation delegates to that object for further processing if the variable is not inside a table cell.- Overrides:
evaluatein classFiller<Object>- Parameters:
element- The ODT.Element instance where this variable is located.variableName- The name of the variable to evaluate.- Returns:
- The evaluated result as an Object, or a placeholder string in the format
"variableName = ?"if the value cannot be determined. Returnsnullfor instances of ODT.Image.
-