You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
729 B
47 lines
729 B
/*
|
|
* Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package com.sun.java.swing.plaf.windows;
|
|
|
|
import java.awt.Color;
|
|
import java.awt.Graphics;
|
|
|
|
import javax.swing.JMenuItem;
|
|
|
|
import com.sun.java.swing.plaf.windows.TMSchema.Part;
|
|
import com.sun.java.swing.plaf.windows.TMSchema.State;
|
|
|
|
/**
|
|
* Accessor interface for WindowsMenuItemUI to allow for "multiple implementation
|
|
* inheritance".
|
|
*
|
|
* @author Igor Kushnirskiy
|
|
*/
|
|
interface WindowsMenuItemUIAccessor {
|
|
JMenuItem getMenuItem();
|
|
State getState(JMenuItem menuItem);
|
|
Part getPart(JMenuItem menuItem);
|
|
}
|