Package javax.swing.plaf

Examples of javax.swing.plaf.ComponentUI


     * Returns a multiplexing UI instance if any of the auxiliary
     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
     * UI object obtained from the default <code>LookAndFeel</code>.
     */
    public static ComponentUI createUI(JComponent a) {
        ComponentUI mui = new MultiPanelUI();
        return MultiLookAndFeel.createUIs(mui,
                                          ((MultiPanelUI) mui).uis,
                                          a);
    }
View Full Code Here


     * Returns a multiplexing UI instance if any of the auxiliary
     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
     * UI object obtained from the default <code>LookAndFeel</code>.
     */
    public static ComponentUI createUI(JComponent a) {
        ComponentUI mui = new MultiInternalFrameUI();
        return MultiLookAndFeel.createUIs(mui,
                                          ((MultiInternalFrameUI) mui).uis,
                                          a);
    }
View Full Code Here

     * Returns a multiplexing UI instance if any of the auxiliary
     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
     * UI object obtained from the default <code>LookAndFeel</code>.
     */
    public static ComponentUI createUI(JComponent a) {
        ComponentUI mui = new MultiMenuBarUI();
        return MultiLookAndFeel.createUIs(mui,
                                          ((MultiMenuBarUI) mui).uis,
                                          a);
    }
View Full Code Here

     * Returns a multiplexing UI instance if any of the auxiliary
     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
     * UI object obtained from the default <code>LookAndFeel</code>.
     */
    public static ComponentUI createUI(JComponent a) {
        ComponentUI mui = new MultiRootPaneUI();
        return MultiLookAndFeel.createUIs(mui,
                                          ((MultiRootPaneUI) mui).uis,
                                          a);
    }
View Full Code Here

     * Returns a multiplexing UI instance if any of the auxiliary
     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
     * UI object obtained from the default <code>LookAndFeel</code>.
     */
    public static ComponentUI createUI(JComponent a) {
        ComponentUI mui = new MultiSeparatorUI();
        return MultiLookAndFeel.createUIs(mui,
                                          ((MultiSeparatorUI) mui).uis,
                                          a);
    }
View Full Code Here

     * Returns a multiplexing UI instance if any of the auxiliary
     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
     * UI object obtained from the default <code>LookAndFeel</code>.
     */
    public static ComponentUI createUI(JComponent a) {
        ComponentUI mui = new MultiViewportUI();
        return MultiLookAndFeel.createUIs(mui,
                                          ((MultiViewportUI) mui).uis,
                                          a);
    }
View Full Code Here

     * Returns a multiplexing UI instance if any of the auxiliary
     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
     * UI object obtained from the default <code>LookAndFeel</code>.
     */
    public static ComponentUI createUI(JComponent a) {
        ComponentUI mui = new MultiTextUI();
        return MultiLookAndFeel.createUIs(mui,
                                          ((MultiTextUI) mui).uis,
                                          a);
    }
View Full Code Here

     * Returns a multiplexing UI instance if any of the auxiliary
     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
     * UI object obtained from the default <code>LookAndFeel</code>.
     */
    public static ComponentUI createUI(JComponent a) {
        ComponentUI mui = new MultiButtonUI();
        return MultiLookAndFeel.createUIs(mui,
                                          ((MultiButtonUI) mui).uis,
                                          a);
    }
View Full Code Here

     * Returns a multiplexing UI instance if any of the auxiliary
     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
     * UI object obtained from the default <code>LookAndFeel</code>.
     */
    public static ComponentUI createUI(JComponent a) {
        ComponentUI mui = new MultiInternalFrameUI();
        return MultiLookAndFeel.createUIs(mui,
                                          ((MultiInternalFrameUI) mui).uis,
                                          a);
    }
View Full Code Here

     * Returns a multiplexing UI instance if any of the auxiliary
     * <code>LookAndFeel</code>s supports this UI.  Otherwise, just returns the
     * UI object obtained from the default <code>LookAndFeel</code>.
     */
    public static ComponentUI createUI(JComponent a) {
        ComponentUI mui = new MultiMenuBarUI();
        return MultiLookAndFeel.createUIs(mui,
                                          ((MultiMenuBarUI) mui).uis,
                                          a);
    }
View Full Code Here

TOP

Related Classes of javax.swing.plaf.ComponentUI

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.