1 /* 2 // $Id: //open/mondrian/src/main/mondrian/olap/NativeEvaluator.java#4 $ 3 // This software is subject to the terms of the Common Public License 4 // Agreement, available at the following URL: 5 // http://www.opensource.org/licenses/cpl.html. 6 // Copyright (C) 2005-2007 Julian Hyde and others 7 // All Rights Reserved. 8 // You must accept the terms of that agreement to use this software. 9 */ 10 package mondrian.olap; 11 12 import mondrian.calc.ExpCompiler.ResultStyle; 13 14 /** 15 * Allows expressions to be evaluated native, e.g. in SQL. 16 * 17 * @author av 18 * @since Nov 11, 2005 19 * @version $Id: //open/mondrian/src/main/mondrian/olap/NativeEvaluator.java#4 $ 20 */ 21 22 public interface NativeEvaluator { 23 Object execute(ResultStyle resultStyle); 24 } 25 26 // End NativeEvaluator.java 27