Java Swing Menu Item getTexturesMenuItem()

Here you can find the source of getTexturesMenuItem()

Description

get Textures Menu Item

License

Open Source License

Declaration

public static JCheckBoxMenuItem getTexturesMenuItem() 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import javax.swing.JCheckBoxMenuItem;

public class Main {
    public static JCheckBoxMenuItem texturesMenuItem = new JCheckBoxMenuItem("Textures", false);

    public static JCheckBoxMenuItem getTexturesMenuItem() {
        texturesMenuItem.setToolTipText("Turn textures on/off");
        return texturesMenuItem;
    }/*from   w  w  w .j a  va  2s  . co  m*/
}

Related

  1. getMenuItemDisabledForegroundObject()
  2. getMenuItemParent()
  3. getResetAppSettingsMenuItem()
  4. getSynthContext(final MenuItemUI ui, final JComponent item)
  5. getTextOffset(JComponent menuItem, Component menuItemParent)
  6. getTopicsMenuItem(ActionListener l)
  7. isSynthUI(final MenuItemUI ui)
  8. loadMenuItem(String action)
  9. makeCheckboxMenuItem(String label, final Object object, final String property, final Object arg)