com.jidesoft.plaf.vsnet.VsnetRadioButtonMenuItemUI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
/*
* @(#)VsnetRadioButtonMenuItemUI.java
*
* Copyright 2002 JIDE Software Inc. All rights reserved.
*/
package com.jidesoft.plaf.vsnet;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
/**
* RadioButtonMenuItem UI implementation
*/
public class VsnetRadioButtonMenuItemUI extends VsnetMenuItemUI {
public static ComponentUI createUI(JComponent b) {
return new VsnetRadioButtonMenuItemUI();
}
@Override
protected String getPropertyPrefix() {
return "RadioButtonMenuItem";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy