1 28 package net.sf.jasperreports.olap.mondrian; 29 30 import mondrian.olap.Cell; 31 import net.sf.jasperreports.olap.result.JROlapCell; 32 33 34 38 public class JRMondrianCell implements JROlapCell 39 { 40 41 private final Cell cell; 42 43 public JRMondrianCell(Cell cell) 44 { 45 this.cell = cell; 46 } 47 48 public String getFormattedValue() 49 { 50 return cell.getFormattedValue(); 51 } 52 53 public Object getValue() 54 { 55 return cell.getValue(); 56 } 57 58 public boolean isError() 59 { 60 return cell.isError(); 61 } 62 63 public boolean isNull() 64 { 65 return cell.isNull(); 66 } 67 68 } 69 | Popular Tags |