Package com.install4j.api.beaninfo
Interface CustomizerCallback
public interface CustomizerCallback
Extended design-time services for customizers. Implement this interface
in your customizer class to have the install4j GUI call its methods at design-time.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionCalled by the install4j GUI when the user exports a project report.void
setParentWindow
(Window window) Called by the install4j GUI after the customizer is initialized and sets the parent window.void
Called by the install4j GUI when the user moves to another bean or to a different configuration step.
-
Method Details
-
stopEditing
void stopEditing()Called by the install4j GUI when the user moves to another bean or to a different configuration step. This is useful if your customizer does not save user input directly to the bean. -
setParentWindow
Called by the install4j GUI after the customizer is initialized and sets the parent window. This is useful if you need a parent window for your own dialogs.- Parameters:
window
- the parent window
-
getProjectReportProperties
ProjectReportProperty[] getProjectReportProperties()Called by the install4j GUI when the user exports a project report. Your customizer can contribute to the project report with this method.- Returns:
- the project report elements contributed by this customizer
-