JAL-1807 includes ?j2sdebug flag and DebugJS._(msg)
[jalviewjs.git] / site / j2s / swingjs / plaf / JSToolBarSeparatorUI.java
1 /*\r
2  * Copyright (c) 1997, 2005, Oracle and/or its affiliates. All rights reserved.\r
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.\r
4  *\r
5  * This code is free software; you can redistribute it and/or modify it\r
6  * under the terms of the GNU General Public License version 2 only, as\r
7  * published by the Free Software Foundation.  Oracle designates this\r
8  * particular file as subject to the "Classpath" exception as provided\r
9  * by Oracle in the LICENSE file that accompanied this code.\r
10  *\r
11  * This code is distributed in the hope that it will be useful, but WITHOUT\r
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License\r
14  * version 2 for more details (a copy is included in the LICENSE file that\r
15  * accompanied this code).\r
16  *\r
17  * You should have received a copy of the GNU General Public License version\r
18  * 2 along with this work; if not, write to the Free Software Foundation,\r
19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\r
20  *\r
21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA\r
22  * or visit www.oracle.com if you need additional information or have any\r
23  * questions.\r
24  */\r
25 \r
26 package swingjs.plaf;\r
27 \r
28 import swingjs.api.DOMNode;\r
29 import jsjavax.swing.JLabel;\r
30 \r
31 public class JSToolBarSeparatorUI extends JSSeparatorUI {\r
32 \r
33         @Override\r
34         public DOMNode getDOMObject() {\r
35                 if (domNode == null)\r
36                         textNode = domNode = createDOMObject("label", id);\r
37                 vCenter(domNode, 10);\r
38                 return setCssFont(DOMNode.setAttr(domNode, "innerHTML",((JLabel) c).getText()), c.getFont());\r
39         }\r
40 \r
41         @Override\r
42         protected void installJSUI() {\r
43                 // TODO Auto-generated method stub\r
44                 \r
45         }\r
46 \r
47         @Override\r
48         protected void uninstallJSUI() {\r
49                 // TODO Auto-generated method stub\r
50                 \r
51         }\r
52 \r
53 }\r