1 13 14 package com.tonbeller.jpivot.olap.mdxparse; 15 16 public class Parameter { 17 18 public static final int TYPE_NUMERIC = 1; 19 public static final int TYPE_STRING = 2; 20 public static final int TYPE_MEMBER = 3; 21 22 private String name; 23 private String description; 24 private int type; 25 private int iAxis; private Object oValue; 27 28 public Parameter( String name, int type, int iAxis ) { 29 this.name = name; 30 this.type = type; 31 this.iAxis = iAxis; 32 } 33 34 37 public Object getOValue() { 38 return oValue; 39 } 40 41 45 public void setOValue(Object object) { 46 oValue = object; 47 } 48 49 52 public int getType() { 53 return type; 54 } 55 56 59 public String getName() { 60 return name; 61 } 62 63 66 public String getDescription() { 67 return description; 68 } 69 70 73 public void setDescription(String description) { 74 this.description = description; 75 } 76 77 80 public int getIAxis() { 81 return iAxis; 82 } 83 84 } | Popular Tags |