01: /*
02: * @(#)${NAME}
03: *
04: * Copyright 2002 - 2004 JIDE Software Inc. All rights reserved.
05: */
06: package com.jidesoft.plaf.metal;
07:
08: import javax.swing.*;
09: import javax.swing.plaf.ComponentUI;
10:
11: /**
12: * CheckboxMenuItem UI implementation.
13: */
14: public class MetalCheckBoxMenuItemUI extends MetalMenuItemUI {
15:
16: public static ComponentUI createUI(JComponent c) {
17: return new MetalCheckBoxMenuItemUI();
18: }
19:
20: @Override
21: protected String getPropertyPrefix() {
22: return "CheckBoxMenuItem";
23: }
24: }
|