KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > jasperreports > olap > xmla > JRXmlaMember


1 /*
2  * ============================================================================
3  * GNU Lesser General Public License
4  * ============================================================================
5  *
6  * JasperReports - Free Java report-generating library.
7  * Copyright (C) 2001-2006 JasperSoft Corporation http://www.jaspersoft.com
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
22  *
23  * JasperSoft Corporation
24  * 303 Second Street, Suite 450 North
25  * San Francisco, CA 94107
26  * http://www.jaspersoft.com
27  */

28 package net.sf.jasperreports.olap.xmla;
29
30 import mondrian.olap.Member;
31 import net.sf.jasperreports.olap.result.JROlapMember;
32
33
34 /**
35  * @author Lucian Chirita (lucianc@users.sourceforge.net)
36  * @version $Id: JRXmlaMember.java 1446 2006-10-25 09:00:05Z lucianc $
37  */

38 public class JRXmlaMember implements JROlapMember
39 {
40
41     private final String JavaDoc name;
42     private final String JavaDoc uniqueName;
43     private final String JavaDoc dimensionName;
44     private final String JavaDoc levelName;
45     private final int depth;
46
47     public JRXmlaMember(String JavaDoc name, String JavaDoc uniqueName, String JavaDoc dimensionName, String JavaDoc levelName, int depth)
48     {
49         this.name = name;
50         this.uniqueName = uniqueName;
51         this.dimensionName = dimensionName;
52         this.levelName = levelName;
53         this.depth = depth;
54     }
55     
56     public int getDepth()
57     {
58         return depth;
59     }
60
61     public String JavaDoc getName()
62     {
63         return name;
64     }
65
66     public JROlapMember getParentMember()
67     {
68         // not implemented
69
return null;
70     }
71
72     public Object JavaDoc getPropertyValue(String JavaDoc propertyName)
73     {
74         throw new UnsupportedOperationException JavaDoc("Member properties are not supported by the XML/A query executer");
75     }
76
77     public String JavaDoc getUniqueName()
78     {
79         return uniqueName;
80     }
81     
82     public String JavaDoc getLevelName()
83     {
84         return levelName;
85     }
86
87     
88     public String JavaDoc getDimensionName()
89     {
90         return dimensionName;
91     }
92
93     public Member getMondrianMember()
94     {
95         throw new UnsupportedOperationException JavaDoc("XML/A member cannot be converted to a mondrian.olap.Member");
96     }
97
98 }
99
Popular Tags