1 package org.openmdx.filter1.cci; 14 15 public class BooleanPropertyImpl 16 extends org.openmdx.base.accessor.jmi.spi.RefObject_1 17 implements BooleanProperty { 18 19 public BooleanPropertyImpl( 20 org.openmdx.base.accessor.generic.cci.Object_1_0 object, 21 javax.jmi.reflect.RefClass refClass 22 ) { 23 super(object, refClass); 24 } 25 26 public java.util.Set isValue ( 30 ) { 31 return (java.util.Set )this.refGetValue("value"); 32 } 33 public void setValue( 37 java.util.Set newValue 38 ) { 39 refSetValue("org:openmdx:filter1:BooleanProperty:value", newValue); 40 } 41 42 public void setValue( 43 boolean[] newValue 44 ) { 45 refSetValue("org:openmdx:filter1:BooleanProperty:value", newValue); 46 } 47 48 public String getName( 52 ) { 53 return getName(0); 54 } 55 56 protected String getName( 57 int index 58 ) { 59 return (String )this.refGetValue("org:openmdx:filter1:Property:name", index); 60 } 61 62 protected void setName( 66 String newValue 67 ) { 68 setName(0, newValue); 69 } 70 71 protected void setName( 72 int index, 73 String newValue 74 ) { 75 refSetValue("org:openmdx:filter1:Property:name", index, newValue); 76 } 77 public short getOperator( 81 ) { 82 return getOperator(0); 83 } 84 85 protected short getOperator( 86 int index 87 ) { 88 return ((java.lang.Number )this.refGetValue("org:openmdx:filter1:Property:operator", index)).shortValue(); 89 } 90 91 public void setOperator( 95 short newValue 96 ) { 97 setOperator(0, newValue); 98 } 99 100 protected void setOperator( 101 int index, 102 short newValue 103 ) { 104 refSetValue("org:openmdx:filter1:Property:operator", index, new Short (newValue)); 105 } 106 public short getQuantor( 110 ) { 111 return getQuantor(0); 112 } 113 114 protected short getQuantor( 115 int index 116 ) { 117 return ((java.lang.Number )this.refGetValue("org:openmdx:filter1:Property:quantor", index)).shortValue(); 118 } 119 120 public void setQuantor( 124 short newValue 125 ) { 126 setQuantor(0, newValue); 127 } 128 129 protected void setQuantor( 130 int index, 131 short newValue 132 ) { 133 refSetValue("org:openmdx:filter1:Property:quantor", index, new Short (newValue)); 134 } 135 } 139 | Popular Tags |