
com.googlecode.jmeter.plugins.webdriver.config.gui.MessageDialog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-plugins-webdriver Show documentation
Show all versions of jmeter-plugins-webdriver Show documentation
Custom plugins set for Apache JMeter
package com.googlecode.jmeter.plugins.webdriver.config.gui;
import java.awt.Component;
import javax.swing.JOptionPane;
public class MessageDialog {
public void show(Component component, String message, String title, int messageType){
JOptionPane.showMessageDialog(component, message, title, messageType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy