blob: 9db9e24414ed7c2a7c451957cb01c0b56beebeeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
* Jitsi, 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;
/**
*
* @author Yana Stamcheva
*/
public interface CreateAccountWindow
{
/**
* Shows or hides this create account window.
*
* @param visible <tt>true</tt> to show this window, <tt>false</tt> -
* otherwise
*/
public void setVisible(boolean visible);
/**
* 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,
boolean isCreateAccount);
}
|