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

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


public class StartsWithTestCase
        extends ValueComparatorTestCaseAbstract {

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


    public ValueConstraint createEndsWithConstraint(String value) {
        return new EndsWith(value);
    }

    public ValueConstraint createStartsWithConstraint(String value) {
        return new StartsWith(value);
    }
View Full Code Here

TOP

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

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.