/bundles/plugins-trunk/LookAndFeel/lipstik-1.1/src/com/lipstikLF/delegate/LipstikCheckBoxMenuItemUI.java
# · Java · 25 lines · 14 code · 5 blank · 6 comment · 0 complexity · ce58d5af1169212890e79a3cc5fd8075 MD5 · raw file
- package com.lipstikLF.delegate;
-
-
- import javax.swing.JComponent;
- import javax.swing.plaf.ComponentUI;
-
-
- public class LipstikCheckBoxMenuItemUI extends LipstikRadioButtonMenuItemUI
- {
- protected String getPropertyPrefix()
- {
- return "CheckBoxMenuItem";
- }
-
- /**
- * Create the UI delegate for the given component
- *
- * @param c The component for which to create the ui delegate
- * @return The created ui delegate
- */
- public static ComponentUI createUI(JComponent c)
- {
- return new LipstikCheckBoxMenuItemUI();
- }
- }