1 10 package mondrian.olap; 11 12 import mondrian.olap.type.Type; 13 14 23 public interface Parameter { 24 27 Scope getScope(); 28 29 32 Type getType(); 33 34 38 Exp getDefaultExp(); 39 40 43 String getName(); 44 45 48 String getDescription(); 49 50 53 boolean isModifiable(); 54 55 63 Object getValue(); 64 65 71 void setValue(Object value); 72 73 76 enum Scope { 77 System, 78 Schema, 79 Connection, 80 Statement 81 } 82 } 83 84 | Popular Tags |