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

src.abbot.tester.JLabelTester Maven / Gradle / Ivy

The newest version!
package abbot.tester;

import java.awt.Component;

import javax.swing.JLabel;

/** Provides action methods and assertions for {@link JLabel}s. */

public class JLabelTester extends JComponentTester {

    public String deriveTag(Component comp) {
        // If the component class is custom, don't provide a tag
        if (isCustom(comp.getClass()))
            return null;

        String tag = stripHTML(((JLabel)comp).getText());
        if (tag == null || "".equals(tag)) { //$NON-NLS-1$
            tag = super.deriveTag(comp);
        }
        return tag;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy