JAL-1807 Bob
[jalviewjs.git] / site / j2s / swingjs / plaf / JSCheckBoxUI.js
1 Clazz.declarePackage ("swingjs.plaf");
2 Clazz.load (["swingjs.plaf.JSRadioButtonUI"], "swingjs.plaf.JSCheckBoxUI", null, function () {
3 c$ = Clazz.declareType (swingjs.plaf, "JSCheckBoxUI", swingjs.plaf.JSRadioButtonUI);
4 Clazz.overrideMethod (c$, "getDOMObject", 
5 function () {
6 return this.getButtonObject ("checkBox");
7 });
8 Clazz.overrideMethod (c$, "getPropertyPrefix", 
9 function () {
10 return "CheckBox.";
11 });
12 });