
src.abbot.tester.DialogTester Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abbot Show documentation
Show all versions of abbot Show documentation
Java GUI Test Framework.
The newest version!
package abbot.tester;
import java.awt.*;
public class DialogTester extends WindowTester {
/** Return a unique tag to help identify the given component. */
public String deriveTag(Component comp) {
// If the component class is custom, don't provide a tag
if (isCustom(comp.getClass()))
return null;
String tag = ((Dialog)comp).getTitle();
if (tag == null || "".equals(tag)) {
tag = super.deriveTag(comp);
}
return tag;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy