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

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

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

import org.w3c.dom.Element;

/**
 * An ElementChooser that always accepts any offered Element.
 * 
 * @author Lasse Koskela
 */
public class AlwaysAcceptChooser implements ElementChooser {

    public boolean accept(Element element) {
        return true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy