From 1eff0efb5b050eed1d6c1c1ddca08207db279f32 Mon Sep 17 00:00:00 2001 From: Yana Stamcheva Date: Tue, 5 Dec 2006 13:03:04 +0000 Subject: [PATCH] not used --- .../main/message/history/NavigationPanel.java | 42 ------------------- 1 file changed, 42 deletions(-) delete mode 100644 src/net/java/sip/communicator/impl/gui/main/message/history/NavigationPanel.java diff --git a/src/net/java/sip/communicator/impl/gui/main/message/history/NavigationPanel.java b/src/net/java/sip/communicator/impl/gui/main/message/history/NavigationPanel.java deleted file mode 100644 index 29ba35e30..000000000 --- a/src/net/java/sip/communicator/impl/gui/main/message/history/NavigationPanel.java +++ /dev/null @@ -1,42 +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.impl.gui.main.message.history; - -import java.awt.*; -import javax.swing.*; - -import net.java.sip.communicator.impl.gui.i18n.*; -/** - * The NavigationPanel is the panel where user could navigate through - * the message history. - * - * @author Yana Stamcheva - */ -public class NavigationPanel extends JPanel { - - private JButton nextPageButton = new JButton(Messages.getString("next")); - - private JButton previousPageButton = new JButton(Messages - .getString("previous")); - - private JButton lastPageButton = new JButton(Messages.getString("last")); - - private JButton firstPageButton = new JButton(Messages.getString("first")); - - /** - * Constructs the NavigationPanel by adding all navigation buttons. - */ - public NavigationPanel() { - super(new FlowLayout(FlowLayout.CENTER)); - - this.add(firstPageButton); - this.add(previousPageButton); - this.add(nextPageButton); - this.add(lastPageButton); - } -}