updateProfile.userProfile parameter
Use the updateProfile.userProfile parameter to set or query the user profile that is used by the updateProfile command. The user profile should be the name of a Java class that contains the following method:
public static void userProfile(LpexView lpexView)
When the updateProfile command is issued, this method will be called.
Availability
query command
set command
current parameter
default parameter
install parameter
Scope
updateProfile.userProfile is scoped to the current view.
current.updateProfile.userProfile is scoped to the current view.
default.updateProfile.userProfile is globally scoped.
install.updateProfile.userProfile is globally scoped.
Syntax
query updateProfile.userProfile set updateProfile.userProfile { default | [ className ] } query current.updateProfile.userProfile query default.updateProfile.userProfile set default.updateProfile.userProfile { install | [ className ] } query install.updateProfile.userProfile
Parameters
default If you specify the default parameter for the set updateProfile.userProfile command, the current view will use the value of default.updateProfile.userProfile as the user profile for the updateProfile command. className If you specify the className parameter for the set updateProfile.userProfile command, the updateProfile command will use the clas indicated by className as the user profile within the current view. If you specify the className parameter for the set default.updateProfile.userProfile command, the updateProfile command will use the class indicated by className as the user profile within all document views that have the updateProfile.userProfile set to default. install If you specify the install parameter for the set default.updateProfile.userProfile command, all views with updateProfile.userProfile set to default will use the value of install.updateProfile.userProfile to determine the user profile that should be used by the updateProfile command.
Description
The query current.updateProfile.userProfile command returns the class name of the user profile that will be used, within the current view, by the updateProfile command.
Examples
query updateProfile.userProfile set updateProfile.userProfile com.ibm.lpex.samples.TestUserProfile query current.updateProfile.userProfile query default.updateProfile.userProfile set default.updateProfile.userProfile install query install.updateProfile.userProfile
updateProfile command
query command
set command
current parameter
default parameter
install parameter
updateProfile.baseProfile parameter
updateProfile.parser parameter
updateProfile.userActions parameter
updateProfile.userCommands parameter
updateProfile.userKeyActions parameter
updateProfile.userMouseActions parameter