Example usage for java.awt.event ItemListener interface-usage

List of usage examples for java.awt.event ItemListener interface-usage

Introduction

In this page you can find the example usage for java.awt.event ItemListener interface-usage.

Usage

From source file maltcms.ui.fileHandles.properties.wizards.PipelinePropertiesVisualPanel1.java

public final class PipelinePropertiesVisualPanel1 extends JPanel implements ItemListener {

    private PipelineElementWidget node;
    private final String[] serviceProviders = PropertyLoader
            .getListServiceProviders("cross.commands.fragments.AFragmentCommand");

From source file de.burrotinto.jKabel.dispalyAS.DisplayAAS.java

/**
 * Created by derduke on 22.05.16.
 */
public class DisplayAAS extends JFrame implements ItemListener, ActionListener {

    private JPanel north = new JPanel();

From source file is.iclt.jcorpald.CorpaldView.java

public class CorpaldView extends JFrame
        implements ActionListener, QueryObserver, ResultObserver, KeyListener, ItemListener, ClipboardOwner {

    CorpaldModelInterface model;
    ControllerInterface controller;

From source file AnotherMenuDemo.java

/**
 * Demonstrate Menus and the MenuBar class/MenuContainer interface
 * 
 * This version uses 1.1 action handling and MenuShortcut. The action handling
 * is incomplete; realistically, each MenuItem would have its own, task-specific
 * ActionListener; this would handle the MenuShortcuts and the CheckboxMenuItems

From source file CheckBoxDemo.java

public class CheckBoxDemo extends JPanel implements ItemListener {
    JCheckBox chinButton;
    JCheckBox glassesButton;
    JCheckBox hairButton;
    JCheckBox teethButton;

From source file SoundApplet.java

public class SoundApplet extends JApplet implements ActionListener, ItemListener {
    AppletSoundList soundList;

    String auFile = "spacemusic.au";

    String aiffFile = "flute+hrn+mrmba.aif";

From source file components.MenuDemo.java

public class MenuDemo implements ActionListener, ItemListener {
    JTextArea output;
    JScrollPane scrollPane;
    String newline = "\n";

    public JMenuBar createMenuBar() {

From source file ComponentEventDemo.java

public class ComponentEventDemo extends JPanel implements ComponentListener, ItemListener {
    static JFrame frame;

    JTextArea display;

    JLabel label;

From source file components.PopupMenuDemo.java

public class PopupMenuDemo implements ActionListener, ItemListener {
    JTextArea output;
    JScrollPane scrollPane;
    String newline = "\n";

    public JMenuBar createMenuBar() {

From source file components.MenuSelectionManagerDemo.java

public class MenuSelectionManagerDemo implements ActionListener, ItemListener {
    JTextArea output;
    JScrollPane scrollPane;
    String newline = "\n";
    public final static int ONE_SECOND = 1000;