com.jidesoft.plaf.metal.MetalCheckBoxMenuItemUI 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)
/*
* @(#)${NAME}
*
* Copyright 2002 - 2004 JIDE Software Inc. All rights reserved.
*/
package com.jidesoft.plaf.metal;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
/**
* CheckboxMenuItem UI implementation.
*/
public class MetalCheckBoxMenuItemUI extends MetalMenuItemUI {
public static ComponentUI createUI(JComponent c) {
return new MetalCheckBoxMenuItemUI();
}
@Override
protected String getPropertyPrefix() {
return "CheckBoxMenuItem";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy