KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > jpivot > olap > query > PositionNodeBean


1 /*
2  * ====================================================================
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) 2003-2004 TONBELLER AG.
7  * All Rights Reserved.
8  * You must accept the terms of that agreement to use this software.
9  * ====================================================================
10  *
11  *
12  */

13
14 package com.tonbeller.jpivot.olap.query;
15
16
17 /**
18  * serialization for mondrian position tree node - used by memento
19  */

20 public class PositionNodeBean {
21   private ExpBean reference;
22   private PositionNodeBean[] children;
23
24   public PositionNodeBean() {
25   }
26   
27   /**
28    * @return reference
29    */

30   public ExpBean getReference() {
31     return reference;
32   }
33
34   /**
35    * @param reference
36    */

37   public void setReference(ExpBean reference) {
38     this.reference = reference;
39   }
40
41   /**
42    * @return
43    */

44   public PositionNodeBean[] getChildren() {
45     return children;
46   }
47
48   /**
49    * @param children
50    */

51   public void setChildren(PositionNodeBean[] children) {
52     this.children = children;
53   }
54
55 } // PositionNodeBean
56
Popular Tags