From 0cfc06a0847c11cc26edb44f6432a6f15fe27d21 Mon Sep 17 00:00:00 2001 From: Yana Stamcheva Date: Wed, 25 May 2011 10:06:23 +0000 Subject: Moves some special properties in the ExtendedAccountRegistrationWizard interface. --- .../GoogleTalkAccountRegistrationWizard.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src/net/java/sip/communicator/plugin/googletalkaccregwizz') diff --git a/src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java b/src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java index 4cdaa0a..9d71af5 100644 --- a/src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java +++ b/src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java @@ -63,17 +63,21 @@ public class GoogleTalkAccountRegistrationWizard } /** - * Returns the first wizard page. + * Returns a simple account registration form that would be the first form + * shown to the user. Only if the user needs more settings she'll choose + * to open the advanced wizard, consisted by all pages. * - * @return the first wizard page. + * @param isCreateAccount indicates if the simple form should be opened as + * a create account form or as a login form + * @return a simple account registration form */ - public Object getSimpleForm() + public Object getSimpleForm(boolean isCreateAccount) { JabberAccountRegistration reg = new JabberAccountRegistration(); setPredefinedProperties(reg); - return getSimpleForm(reg); + return getSimpleForm(reg, isCreateAccount); } /** -- cgit v1.1