KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > it > businesslogic > ireport > data > XmlaFieldNode


1 /**
2  * Copyright (C) 2005, 2006 CINCOM SYSTEMS, INC.
3  * All Rights Reserved
4  * www.cincom.com
5  * @author MPenningroth
6  */

7 package it.businesslogic.ireport.data;
8
9
10 public class XmlaFieldNode extends it.businesslogic.ireport.JRField {
11     private int axisNumber;
12     
13     /**
14      * Creates a new instance of XmlaFieldNode
15      * assings the values for Node name and the Axis number.
16      */

17     public XmlaFieldNode(String JavaDoc name, int axisNumber) {
18         super(name, "java.lang.String");
19         this.axisNumber = axisNumber;
20     }
21     /**
22      * Returns axisNumber.
23      */

24     public int getAxisNumber() {
25         return axisNumber;
26     }
27     
28 }
29
Popular Tags