Package com.volantis.styling.impl.engine.matchers.constraints

Examples of com.volantis.styling.impl.engine.matchers.constraints.EndsWith


public class EndsWithTestCase
        extends ValueComparatorTestCaseAbstract {

    // Javadoc inherited.
    protected ValueConstraint createConstraint(String value) {
        return new EndsWith(value);
    }
View Full Code Here


    public ValueConstraint createExistsConstraint() {
        return EXISTS_VALUE_CONSTRAINT;
    }

    public ValueConstraint createEndsWithConstraint(String value) {
        return new EndsWith(value);
    }
View Full Code Here

TOP

Related Classes of com.volantis.styling.impl.engine.matchers.constraints.EndsWith

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.