JAL-1807 includes ?j2sdebug flag and DebugJS._(msg)
[jalviewjs.git] / site / j2s / swingjs / plaf / JSViewportUI.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 \r
30 public class JSViewportUI extends JSComponentUI {\r
31 \r
32         @Override\r
33         public DOMNode getDOMObject() {\r
34                 if (domNode == null)\r
35                         domNode = createDOMObject("div", id);\r
36                 return domNode;\r
37         }\r
38 \r
39         @Override\r
40         protected void installJSUI() {\r
41                 // TODO Auto-generated method stub\r
42                 \r
43         }\r
44 \r
45         @Override\r
46         protected void uninstallJSUI() {\r
47                 // TODO Auto-generated method stub\r
48                 \r
49         }\r
50 \r
51 }\r