KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > rolap > RolapMeasure


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/rolap/RolapMeasure.java#13 $
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) 2001-2002 Kana Software, Inc.
7 // Copyright (C) 2001-2006 Julian Hyde and others
8 // All Rights Reserved.
9 // You must accept the terms of that agreement to use this software.
10 //
11 // jhyde, 10 August, 2001
12 */

13
14 package mondrian.rolap;
15 import mondrian.olap.Member;
16 import mondrian.olap.CellFormatter;
17
18 /**
19  * Interface implemented by all measures (both stored and calculated).
20  *
21  * @author jhyde
22  * @since 10 August, 2001
23  * @version $Id: //open/mondrian/src/main/mondrian/rolap/RolapMeasure.java#13 $
24  */

25 interface RolapMeasure extends Member {
26     /**
27      * Returns the object which formats cells of this measure, or null to use
28      * default formatting.
29      */

30     CellFormatter getFormatter();
31 }
32
33 // End RolapMeasure.java
34
Popular Tags