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

net.sf.jsptest.assertion.NameChooser Maven / Gradle / Ivy

The newest version!
package net.sf.jsptest.assertion;

import org.w3c.dom.Element;

/**
 * @author Lasse Koskela
 */
public class NameChooser implements ElementChooser {

    private final String name;

    public NameChooser(String name) {
        this.name = name;
    }

    public boolean accept(Element element) {
        return name.equals(element.getAttribute("NAME"));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy