JAL-1807 Bob
[jalviewjs.git] / site / j2s / swingjs / plaf / JSRootPaneUI.java
1 package swingjs.plaf;
2
3 import swingjs.api.DOMNode;
4
5 /**
6  * Pluggable look and feel interface for JRootPane.
7  * 
8  * @author Scott Violet
9  * @since 1.3
10  */
11 public class JSRootPaneUI extends JSComponentUI {
12
13         public JSRootPaneUI() {
14                 isContainer = true;
15                 setDoc();
16         }
17
18         @Override
19         public DOMNode getDOMObject() {
20                 return null;
21         }
22
23         @Override
24         protected void installJSUI() {
25         }
26
27         @Override
28         protected void uninstallJSUI() {
29         }
30 }