/* * ToolBar.java * * Created on 2.2.2009 * */ package netukar.tinybrowser.ui.toolbar; import javax.swing.JToolBar; /** * Tool bar used in the main application window. This tool bar contains buttons * for the user to conviniently invoke application's actions. * * @author Radovan Netuka * @version 1.0 */ public class ToolBar extends JToolBar { /** * Creates a new instance of ToolBar with all buttons initialized. */ public ToolBar() { super(); setFloatable(false); add(new NewRequestButton()); add(new SaveResponseButton()); add(new SendRequestButton()); } }