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