Visual Color Imbalance Detector: Reconstructed project directories and files
[VistaCID.git] / org / tjworld / components / PowerToolBar.java
1 /*\r
2         * PowerToolBar.java\r
3  *\r
4         * Created on 10 October 2001, 12:39\r
5  * $Header: $\r
6         * \r
7         * $History: $\r
8 */\r
9 \r
10 /**\r
11  * <code>PowerToolBar</code> extends <code>JToolBar</code>  provides a component that is useful for\r
12  * displaying commonly used <code>Action</code>s or controls.  \r
13  * For examples and information on using tool bars see\r
14  * <a href="http://java.sun.com/docs/books/tutorial/uiswing/components/toolbar.html">How to Use Tool Bars</a>,\r
15  * a section in <em>The Java Tutorial</em>.\r
16  *\r
17  * <p>\r
18  * With most look and feels,\r
19  * the user can drag out a tool bar into a separate window\r
20  * (unless the <code>floatable</code> property is set to <code>false</code>).\r
21  * For drag-out to work correctly, it is recommended that you add\r
22  * <code>JToolBar</code> instances to one of the four "sides" of a\r
23  * container whose layout manager is a <code>BorderLayout</code>,\r
24  * and do not add children to any of the other four "sides".\r
25  * <p>\r
26  * For the keyboard keys used by this component in the standard Look and\r
27  * Feel (L&F) renditions, see the\r
28  * <a href="doc-files/Key-Index.html#JToolBar"><code>JToolBar</code> key assignments</a>.\r
29  * <p>\r
30  * <strong>Warning:</strong>\r
31  * Serialized objects of this class will not be compatible with\r
32  * future Swing releases. The current serialization support is\r
33  * appropriate for short term storage or RMI between applications running\r
34  * the same version of Swing.  As of 1.4, support for long term storage\r
35  * of all JavaBeans<sup><font size="-2">TM</font></sup>\r
36  * has been added to the <code>java.beans</code> package.\r
37  * Please see {@link java.beans.XMLEncoder}.\r
38  *\r
39  * @beaninfo\r
40  *   attribute: isContainer true\r
41  * description: A component which displays commonly used controls or Actions.\r
42  *\r
43         * @author  TJ\r
44  * @version 1.1 6 Oct 2001\r
45  * @see JToolBar\r
46  */\r
47 public class PowerToolBar extends javax.swing.JToolBar {\r
48         /** Creates new tool bar */\r
49  public PowerToolBar() {\r
50                 super(); // create the standard javax.swing.JToolBar\r
51  }\r
52                                 \r
53 }\r