KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > rolap > MeasureMemberSource


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/rolap/MeasureMemberSource.java#7 $
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-2005 Julian Hyde and others
8 // All Rights Reserved.
9 // You must accept the terms of that agreement to use this software.
10 //
11 // jhyde, 21 December, 2001
12 */

13
14 package mondrian.rolap;
15
16 /**
17  * A <code>MeasureMemberSource</code> implements the {@link MemberReader}
18  * interface for the special Measures dimension.
19  *
20  * <p>Usually when a member is added to the context, the resulting SQL
21  * statement has extra filters in its WHERE clause, but for members from this
22  * source, but this implementation columns are added to the SELECT list.
23  *
24  * @author jhyde
25  * @since 21 December, 2001
26  * @version $Id: //open/mondrian/src/main/mondrian/rolap/MeasureMemberSource.java#7 $
27  */

28 class MeasureMemberSource extends ArrayMemberSource {
29     MeasureMemberSource(RolapHierarchy hierarchy, RolapMember[] members) {
30         super(hierarchy, members);
31     }
32 }
33
34 // End MeasureMemberSource.java
35
Popular Tags