kg.apc.jmeter.config.RemoveServerAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-plugins-standard Show documentation
Show all versions of jmeter-plugins-standard Show documentation
Custom plugins set for Apache JMeter
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