diff options
author | Yana Stamcheva <yana@jitsi.org> | 2011-05-25 10:06:23 +0000 |
---|---|---|
committer | Yana Stamcheva <yana@jitsi.org> | 2011-05-25 10:06:23 +0000 |
commit | 0cfc06a0847c11cc26edb44f6432a6f15fe27d21 (patch) | |
tree | 22c2d0519e8aae9a6d08eb022aff286d529807d3 /src/net/java/sip/communicator/plugin/googletalkaccregwizz | |
parent | 28ee92fa770bc503cb573335e0fc1084f2c09c87 (diff) | |
download | jitsi-0cfc06a0847c11cc26edb44f6432a6f15fe27d21.zip jitsi-0cfc06a0847c11cc26edb44f6432a6f15fe27d21.tar.gz jitsi-0cfc06a0847c11cc26edb44f6432a6f15fe27d21.tar.bz2 |
Moves some special properties in the ExtendedAccountRegistrationWizard interface.
Diffstat (limited to 'src/net/java/sip/communicator/plugin/googletalkaccregwizz')
-rw-r--r-- | src/net/java/sip/communicator/plugin/googletalkaccregwizz/GoogleTalkAccountRegistrationWizard.java | 12 |
1 files changed, 8 insertions, 4 deletions
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);
}
/**
|