aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/sip/communicator/service/gui')
-rw-r--r--src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java14
-rw-r--r--src/net/java/sip/communicator/service/gui/CreateAccountWindow.java5
2 files changed, 8 insertions, 11 deletions
diff --git a/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java b/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java
index 0aba34a..c1bf3bc 100644
--- a/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java
+++ b/src/net/java/sip/communicator/service/gui/AccountRegistrationWizard.java
@@ -164,14 +164,6 @@ public interface AccountRegistrationWizard
public void webSignup() throws UnsupportedOperationException;
/**
- * Indicates if a sign up form is supported by this wizard.
- *
- * @return <tt>true</tt> if a sign up form is supported by this wizard,
- * <tt>false</tt> - otherwise
- */
- public boolean isSignupSupported();
-
- /**
* Returns the preferred dimensions of this wizard.
*
* @return the preferred dimensions of this wizard.
@@ -211,8 +203,10 @@ public interface AccountRegistrationWizard
* 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.
- *
+ *
+ * @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);
}
diff --git a/src/net/java/sip/communicator/service/gui/CreateAccountWindow.java b/src/net/java/sip/communicator/service/gui/CreateAccountWindow.java
index f972e0f..8dadbae 100644
--- a/src/net/java/sip/communicator/service/gui/CreateAccountWindow.java
+++ b/src/net/java/sip/communicator/service/gui/CreateAccountWindow.java
@@ -24,6 +24,9 @@ public interface CreateAccountWindow
* Sets the selected wizard.
*
* @param wizard the wizard to select
+ * @param isCreatedForm indicates if the selected wizard should be opened
+ * in create account mode
*/
- public void setSelectedWizard(AccountRegistrationWizard wizard);
+ public void setSelectedWizard( AccountRegistrationWizard wizard,
+ boolean isCreateAccount);
}