JAL-1807
[jalview.git] / site / j2s / swingjs / plaf / JSRootPaneUI.java
diff --git a/site/j2s/swingjs/plaf/JSRootPaneUI.java b/site/j2s/swingjs/plaf/JSRootPaneUI.java
new file mode 100644 (file)
index 0000000..05a2f29
--- /dev/null
@@ -0,0 +1,30 @@
+package swingjs.plaf;
+
+import swingjs.api.DOMNode;
+
+/**
+ * Pluggable look and feel interface for JRootPane.
+ * 
+ * @author Scott Violet
+ * @since 1.3
+ */
+public class JSRootPaneUI extends JSComponentUI {
+
+       public JSRootPaneUI() {
+               isContainer = true;
+               setDoc();
+       }
+
+       @Override
+       public DOMNode getDOMObject() {
+               return null;
+       }
+
+       @Override
+       protected void installJSUI() {
+       }
+
+       @Override
+       protected void uninstallJSUI() {
+       }
+}