Package org.boris.expr.util

Examples of org.boris.expr.util.Counter


        this.iterations = iterations;
    }

    public final Expr evaluate(Expr[] args) throws ExprException {
        assertMinArgCount(args, 1);
        Counter c = new Counter();
        initialize(c);
        ol: for (int i = 0; i < iterations; i++) {
            c.iteration = i + 1;
            iteration(c);
            for (Expr e : args) {
View Full Code Here

TOP

Related Classes of org.boris.expr.util.Counter

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.