Package mondrian.calc.impl

Examples of mondrian.calc.impl.AbstractIterCalc


        // Argument 0, the definition of the set, has been resolved since the
        // scoped named set was created. Implicit conversions, like converting
        // a member to a set, have been performed. Use the new expression.
        scopedNamedSet.setExp(call.getArg(0));

        return new AbstractIterCalc(call, new Calc[0]) {
            public TupleIterable evaluateIterable(
                Evaluator evaluator)
            {
                final Evaluator.NamedSetEvaluator namedSetEvaluator =
                    evaluator.getNamedSetEvaluator(scopedNamedSet, false);
View Full Code Here


            && !styleList.contains(ResultStyle.ANY))
        {
            return null;
        }

        return new AbstractIterCalc(
            this,
            new Calc[]{/* todo: compile namedSet.getExp() */})
        {
            public TupleIterable evaluateIterable(
                Evaluator evaluator)
View Full Code Here

TOP

Related Classes of mondrian.calc.impl.AbstractIterCalc

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.