public interface PreferenceComponentManager
T-Plan Robot Enterprise, (C) 2009-2022 T-Plan Limited. All rights reserved.
Modifier and Type | Method and Description |
---|---|
void |
componentCreated(Preference p,
Object component,
Object container)
Called when the preference GUI component gets created.
|
void |
goingToLoad(Preference p,
Object component,
Object container,
Object configuration)
Called when the component is about to be loaded with the preference
value.
|
void |
savePerformed(Preference p,
Object component,
Object container,
Object configuration)
Called after the preference value is retrieved from the component and
saved back to the configuration object.
|
void componentCreated(Preference p, Object component, Object container)
p
- the preference.component
- the GUI component which will be used to display and edit
the preference value.container
- the preference container.void goingToLoad(Preference p, Object component, Object container, Object configuration)
p
- the preference.component
- the GUI component which will be used to display and edit
the preference value.container
- the preference container.configuration
- the configuration (map of params and values) which
contains the preference value.void savePerformed(Preference p, Object component, Object container, Object configuration)
p
- the preference.component
- the GUI component which will be used to display and edit
the preference value.container
- the preference container.configuration
- the configuration (map of params and values) which
contains the preference value.