it.unibo.alchemist.boundary.swingui.impl.AbstractMenu Maven / Gradle / Ivy
/*
* Copyright (C) 2010-2022, Danilo Pianini and contributors
* listed, for each module, in the respective subproject's build.gradle.kts file.
*
* This file is part of Alchemist, and is distributed under the terms of the
* GNU General Public License, with a linking exception,
* as described in the file LICENSE in the Alchemist distribution's top directory.
*/
package it.unibo.alchemist.boundary.swingui.impl;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import javax.swing.JMenu;
import javax.swing.JMenuItem;
import java.awt.event.ActionListener;
/**
*/
@Deprecated
public abstract class AbstractMenu extends JMenu implements ActionListener {
private static final long serialVersionUID = 5209455686362711386L;
/**
* @param title
* the menu name
* @param items
* the items for this menu
*/
@SuppressFBWarnings(
value = "MC_OVERRIDABLE_METHOD_CALL_IN_CONSTRUCTOR",
justification = "False positive: addActionListener can't be overridden"
)
public AbstractMenu(final String title, final JMenuItem[] items) {
super(title);
for (final JMenuItem i : items) {
add(i);
i.setActionCommand(i.getText());
i.addActionListener(this);
}
}
@Override
public final void addActionListener(final ActionListener l) {
super.addActionListener(l);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy