* @param prefs the agent's configuration preferences
* @param in the input stream that the agent uses to get user input
* @param out the output stream that the agent uses to show messages to the user
*/
public void performAdvancedSetup(Preferences prefs, PromptInput in, PrintWriter out) {
Setup setup = new Setup(prefs, MSG.getMsg(AgentI18NResourceKeys.SETUP_INTRO_ADVANCED),
createAdvancedSetupInstructions(), in, out);
if (setup.setup()) {
prefs.putBoolean(AgentConfigurationConstants.CONFIG_SETUP, true);
}
return;
}