JAL-1807 Bob
[jalviewjs.git] / site / j2s / swingjs / plaf / JSCheckBoxMenuItemUI.java
1 package swingjs.plaf;
2
3 import swingjs.api.DOMNode;
4
5 /**
6  * CheckboxUI implementation for BasicCheckboxUI
7  * <p>
8  * <strong>Warning:</strong> Serialized objects of this class will not be
9  * compatible with future Swing releases. The current serialization support is
10  * appropriate for short term storage or RMI between applications running the
11  * same version of Swing. As of 1.4, support for long term storage of all
12  * JavaBeans<sup><font size="-2">TM</font></sup> has been added to the
13  * <code>java.beans</code> package. Please see {@link java.beans.XMLEncoder}.
14  * 
15  * @author Jeff Dinkins
16  */
17 public class JSCheckBoxMenuItemUI extends JSCheckBoxUI {
18
19         @Override
20         public DOMNode getDOMObject() {
21                 return getButtonObject("checkBox");
22         }
23
24         @Override
25         protected String getPropertyPrefix() {
26                 return "CheckBoxMenuItem.";
27         }
28
29 }