aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/plugin/aimaccregwizz
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/aimaccregwizz
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/aimaccregwizz')
-rw-r--r--src/net/java/sip/communicator/plugin/aimaccregwizz/AimAccountRegistrationWizard.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/plugin/aimaccregwizz/AimAccountRegistrationWizard.java b/src/net/java/sip/communicator/plugin/aimaccregwizz/AimAccountRegistrationWizard.java
index cd333c8..29b14e6 100644
--- a/src/net/java/sip/communicator/plugin/aimaccregwizz/AimAccountRegistrationWizard.java
+++ b/src/net/java/sip/communicator/plugin/aimaccregwizz/AimAccountRegistrationWizard.java
@@ -279,4 +279,22 @@ public class AimAccountRegistrationWizard
{
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();
+ }
}