KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openi > mondrian > schema > VirtualCubeMeasure


1 /*********************************************************************************
2  * The contents of this file are subject to the OpenI Public License Version 1.0
3  * ("License"); You may not use this file except in compliance with the
4  * License. You may obtain a copy of the License at
5  * http://www.openi.org/docs/LICENSE.txt
6  *
7  * Software distributed under the License is distributed on an "AS IS" basis,
8  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
9  * the specific language governing rights and limitations under the License.
10  *
11  * The Original Code is: OpenI Open Source
12  *
13  * The Initial Developer of the Original Code is Loyalty Matrix, Inc.
14  * Portions created by Loyalty Matrix, Inc. are
15  * Copyright (C) 2005 Loyalty Matrix, Inc.; All Rights Reserved.
16  *
17  * Contributor(s): ______________________________________.
18  *
19  ********************************************************************************/

20 package org.openi.mondrian.schema;
21
22 public class VirtualCubeMeasure {
23     private String JavaDoc cubeName;
24     private String JavaDoc name;
25
26     public String JavaDoc getCubeName() {
27         return cubeName;
28     }
29
30     public String JavaDoc getName() {
31         return name;
32     }
33
34     public void setCubeName(String JavaDoc cubeName) {
35         this.cubeName = cubeName;
36     }
37
38     public void setName(String JavaDoc name) {
39         this.name = name;
40     }
41 }
42
Popular Tags