1 /**2 * Copyright (C) 2005, 2006 CINCOM SYSTEMS, INC.3 * All Rights Reserved4 * www.cincom.com5 * @author MPenningroth6 */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 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