Merge branch 'master' of https://source.jalview.org/git/jalviewjs.git
[jalviewjs.git] / site / j2s / swingjs / plaf / JSScrollBarUI.js
1 //Clazz.declarePackage ("swingjs.plaf");
2 //Clazz.load (["swingjs.plaf.JSSliderUI"], "swingjs.plaf.JSScrollBarUI", null, function () {
3 //c$ = Clazz.declareType (swingjs.plaf, "JSScrollBarUI", swingjs.plaf.JSSliderUI);
4 //});
5
6
7 Clazz.declarePackage ("swingjs.plaf");
8 Clazz.load (["swingjs.plaf.JSComponentUI"], "swingjs.plaf.JSScrollBarUI", null, function () {
9 c$ = Clazz.declareType (swingjs.plaf, "JSScrollBarUI", swingjs.plaf.JSComponentUI);
10 Clazz.overrideMethod (c$, "getDOMObject", 
11 function () {
12 if (this.domNode == null) this.domNode = this.createDOMObject ("div", this.id, []);
13 return this.domNode;
14 });
15 Clazz.overrideMethod (c$, "installJSUI", 
16 function () {
17 });
18 Clazz.overrideMethod (c$, "uninstallJSUI", 
19 function () {
20 });
21 });