All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kg.apc.jmeter.config.RemoveServerAction Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package kg.apc.jmeter.config;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class RemoveServerAction implements ActionListener {
    private final JMeterServerPanel owner;

    public RemoveServerAction(JMeterServerPanel jMeterServerPanel) {
        owner=jMeterServerPanel;
    }

    public void actionPerformed(ActionEvent actionEvent) {
        owner.remove();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy