
net.sf.jsptest.assertion.NameChooser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsptest-framework Show documentation
Show all versions of jsptest-framework Show documentation
The core framework functionality for JspTest.
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