aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service
diff options
context:
space:
mode:
authorYana Stamcheva <yana@jitsi.org>2008-05-27 18:00:40 +0000
committerYana Stamcheva <yana@jitsi.org>2008-05-27 18:00:40 +0000
commitc196604c2e679d4d0bb8d7bc9b4cbd42a7e4df1f (patch)
treef685a4bac44b1832a0d999641009b7cd7b3aa569 /src/net/java/sip/communicator/service
parent9d562d9f3241dc2a1054a1149a6c74d1f151e47b (diff)
downloadjitsi-c196604c2e679d4d0bb8d7bc9b4cbd42a7e4df1f.zip
jitsi-c196604c2e679d4d0bb8d7bc9b4cbd42a7e4df1f.tar.gz
jitsi-c196604c2e679d4d0bb8d7bc9b4cbd42a7e4df1f.tar.bz2
Configurable wizard "Finish" button. Account registration wizards have now a "Sign in" button.
Diffstat (limited to 'src/net/java/sip/communicator/service')
-rw-r--r--src/net/java/sip/communicator/service/gui/WizardContainer.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/net/java/sip/communicator/service/gui/WizardContainer.java b/src/net/java/sip/communicator/service/gui/WizardContainer.java
index 257e787..5ffc1f5 100644
--- a/src/net/java/sip/communicator/service/gui/WizardContainer.java
+++ b/src/net/java/sip/communicator/service/gui/WizardContainer.java
@@ -58,7 +58,16 @@ public interface WizardContainer {
* disable it.
*/
public void setCancelButtonEnabled(boolean newValue);
-
+
+ /**
+ * Sets the text label of the "Finish" wizard button. The default value of
+ * the "Finish" button is still defined by the implementation of this
+ * <tt>WizardContainer</tt> interface, but calling this method would allow
+ * wizards to specify their own finish button.
+ * @param text the new label of the button
+ */
+ public void setFinishButtonText(String text);
+
/**
* Refreshes the current content of this wizard container.
*/