01: /**
02: * Copyright (C) 2005, 2006 CINCOM SYSTEMS, INC.
03: * All Rights Reserved
04: * www.cincom.com
05: * @author MPenningroth
06: */package it.businesslogic.ireport.data;
07:
08: public class XmlaFieldNode extends it.businesslogic.ireport.JRField {
09: private int axisNumber;
10:
11: /**
12: * Creates a new instance of XmlaFieldNode
13: * assings the values for Node name and the Axis number.
14: */
15: public XmlaFieldNode(String name, int axisNumber) {
16: super (name, "java.lang.String");
17: this .axisNumber = axisNumber;
18: }
19:
20: /**
21: * Returns axisNumber.
22: */
23: public int getAxisNumber() {
24: return axisNumber;
25: }
26:
27: }
|