diff options
author | Yana Stamcheva <yana@jitsi.org> | 2011-05-25 10:14:09 +0000 |
---|---|---|
committer | Yana Stamcheva <yana@jitsi.org> | 2011-05-25 10:14:09 +0000 |
commit | 5a1f93e019b800d11145c6b06f1da9f5f46eeb0b (patch) | |
tree | 4ff5d8e0e603df9bd56572456927d4e188efe205 /src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java | |
parent | 0cfc06a0847c11cc26edb44f6432a6f15fe27d21 (diff) | |
download | jitsi-5a1f93e019b800d11145c6b06f1da9f5f46eeb0b.zip jitsi-5a1f93e019b800d11145c6b06f1da9f5f46eeb0b.tar.gz jitsi-5a1f93e019b800d11145c6b06f1da9f5f46eeb0b.tar.bz2 |
Moves some special properties in the ExtendedAccountRegistrationWizard interface.
Diffstat (limited to 'src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java')
-rw-r--r-- | src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java b/src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java new file mode 100644 index 0000000..162f791 --- /dev/null +++ b/src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java @@ -0,0 +1,29 @@ +/* + * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client. + * + * Distributable under LGPL license. See terms of license at gnu.org. + */ +package net.java.sip.communicator.service.gui; + +/** + * The <tt>ExtendedAccountRegistrationWizard</tt> allows to specify if a sign up + * form is supported. + * + * @author Yana Stamcheva + */ +public interface ExtendedAccountRegistrationWizard + extends AccountRegistrationWizard +{ + /** + * 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(); + + /** + * Sets the create account view of this registration wizard. + */ + public void setCreateAccountView(); +} |