diff --git a/src/net/java/sip/communicator/plugin/jabberaccregwizz/SecondWizardPage.java b/src/net/java/sip/communicator/plugin/jabberaccregwizz/SecondWizardPage.java deleted file mode 100644 index 6fb459563..000000000 --- a/src/net/java/sip/communicator/plugin/jabberaccregwizz/SecondWizardPage.java +++ /dev/null @@ -1,58 +0,0 @@ -/* - * 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.plugin.jabberaccregwizz; - -import javax.swing.*; - -import net.java.sip.communicator.service.gui.*; - -public class SecondWizardPage - extends JPanel implements WizardPage -{ - - public static final String SECOND_PAGE_IDENTIFIER = "SecondPageIdentifier"; - - public Object getIdentifier() - { - return SECOND_PAGE_IDENTIFIER; - } - - public Object getNextPageIdentifier() - { - return FINISH_PAGE_IDENTIFIER; - } - - public Object getBackPageIdentifier() - { - return FirstWizardPage.FIRST_PAGE_IDENTIFIER; - } - - public Object getWizardForm() - { - return this; - } - - public void pageHiding() - { - } - - public void pageShown() - { - } - - public void pageShowing() - { - } - - public void pageNext() - { - } - - public void pageBack() - { - } -} diff --git a/src/net/java/sip/communicator/plugin/msnaccregwizz/SecondWizardPage.java b/src/net/java/sip/communicator/plugin/msnaccregwizz/SecondWizardPage.java deleted file mode 100644 index 72c223388..000000000 --- a/src/net/java/sip/communicator/plugin/msnaccregwizz/SecondWizardPage.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * 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.plugin.msnaccregwizz; - -import javax.swing.*; - -import net.java.sip.communicator.service.gui.*; - -public class SecondWizardPage extends JPanel - implements WizardPage { - - public static final String SECOND_PAGE_IDENTIFIER = "SecondPageIdentifier"; - - public Object getIdentifier() { - return SECOND_PAGE_IDENTIFIER; - } - - public Object getNextPageIdentifier() { - return FINISH_PAGE_IDENTIFIER; - } - - public Object getBackPageIdentifier() { - return FirstWizardPage.FIRST_PAGE_IDENTIFIER; - } - - public Object getWizardForm() { - return this; - } - - public void pageHiding() { - } - - public void pageShown() { - } - - public void pageShowing() { - } - - public void pageNext() { - } - - public void pageBack() { - } -} diff --git a/src/net/java/sip/communicator/plugin/sipaccregwizz/SecondWizardPage.java b/src/net/java/sip/communicator/plugin/sipaccregwizz/SecondWizardPage.java deleted file mode 100644 index 398475291..000000000 --- a/src/net/java/sip/communicator/plugin/sipaccregwizz/SecondWizardPage.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * 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.plugin.sipaccregwizz; - -import javax.swing.*; - -import net.java.sip.communicator.service.gui.*; - -public class SecondWizardPage extends JPanel - implements WizardPage { - - public static final String SECOND_PAGE_IDENTIFIER = "SecondPageIdentifier"; - - public Object getIdentifier() { - return SECOND_PAGE_IDENTIFIER; - } - - public Object getNextPageIdentifier() { - return FINISH_PAGE_IDENTIFIER; - } - - public Object getBackPageIdentifier() { - return FirstWizardPage.FIRST_PAGE_IDENTIFIER; - } - - public Object getWizardForm() { - return this; - } - - public void pageHiding() { - } - - public void pageShown() { - } - - public void pageShowing() { - } - - public void pageNext() { - } - - public void pageBack() { - } -} diff --git a/src/net/java/sip/communicator/plugin/yahooaccregwizz/SecondWizardPage.java b/src/net/java/sip/communicator/plugin/yahooaccregwizz/SecondWizardPage.java deleted file mode 100644 index c5c537a04..000000000 --- a/src/net/java/sip/communicator/plugin/yahooaccregwizz/SecondWizardPage.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * 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.plugin.yahooaccregwizz; - -import javax.swing.*; - -import net.java.sip.communicator.service.gui.*; - -public class SecondWizardPage extends JPanel - implements WizardPage { - - public static final String SECOND_PAGE_IDENTIFIER = "SecondPageIdentifier"; - - public Object getIdentifier() { - return SECOND_PAGE_IDENTIFIER; - } - - public Object getNextPageIdentifier() { - return FINISH_PAGE_IDENTIFIER; - } - - public Object getBackPageIdentifier() { - return FirstWizardPage.FIRST_PAGE_IDENTIFIER; - } - - public Object getWizardForm() { - return this; - } - - public void pageHiding() { - } - - public void pageShown() { - } - - public void pageShowing() { - } - - public void pageNext() { - } - - public void pageBack() { - } -}