aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/plugin/yahooaccregwizz/YahooAccountRegistrationWizard.java
diff options
context:
space:
mode:
authorYana Stamcheva <yana@jitsi.org>2007-11-14 11:15:47 +0000
committerYana Stamcheva <yana@jitsi.org>2007-11-14 11:15:47 +0000
commit24a42456db695e6b2dd00a4dcda592f709eba398 (patch)
tree52bd540a9adf2a1b1dfdc5a63c68a8ecde1f7838 /src/net/java/sip/communicator/plugin/yahooaccregwizz/YahooAccountRegistrationWizard.java
parent4b389a56706199d98b95e1cdf70586ad825c3e95 (diff)
downloadjitsi-24a42456db695e6b2dd00a4dcda592f709eba398.zip
jitsi-24a42456db695e6b2dd00a4dcda592f709eba398.tar.gz
jitsi-24a42456db695e6b2dd00a4dcda592f709eba398.tar.bz2
Added getFirstPageIdentifier and getLastPageIdentifier to the AccountRegistrationWizard interface.
Diffstat (limited to 'src/net/java/sip/communicator/plugin/yahooaccregwizz/YahooAccountRegistrationWizard.java')
-rw-r--r--src/net/java/sip/communicator/plugin/yahooaccregwizz/YahooAccountRegistrationWizard.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/plugin/yahooaccregwizz/YahooAccountRegistrationWizard.java b/src/net/java/sip/communicator/plugin/yahooaccregwizz/YahooAccountRegistrationWizard.java
index 34b7259..6864110 100644
--- a/src/net/java/sip/communicator/plugin/yahooaccregwizz/YahooAccountRegistrationWizard.java
+++ b/src/net/java/sip/communicator/plugin/yahooaccregwizz/YahooAccountRegistrationWizard.java
@@ -257,4 +257,23 @@ public class YahooAccountRegistrationWizard
{
return new Dimension(600, 500);
}
+
+ /**
+ * Returns the identifier of the page to show first in the wizard.
+ * @return the identifier of the page to show first in the wizard.
+ */
+ public Object getFirstPageIdentifier()
+ {
+ return firstWizardPage.getIdentifier();
+ }
+
+ /**
+ * Returns the identifier of the page to show last in the wizard.
+ * @return the identifier of the page to show last in the wizard.
+ */
+ public Object getLastPageIdentifier()
+ {
+ return firstWizardPage.getIdentifier();
+ }
+
}