1 28 package net.sf.jasperreports.olap.mapping; 29 30 34 public class AxisPosition 35 { 36 public static final int POSITION_UNSPECIFIED = -1; 37 38 private final int idx; 39 40 public AxisPosition (int idx) 41 { 42 this.idx = idx; 43 } 44 45 public int getPosition () 46 { 47 return idx; 48 } 49 50 public boolean isSpecified () 51 { 52 return idx != POSITION_UNSPECIFIED; 53 } 54 } 55 | Popular Tags |