1 package org.openmdx.filter1.cci; 14 15 public class FilterImpl 16 extends org.openmdx.base.accessor.jmi.spi.RefObject_1 17 implements Filter { 18 19 public FilterImpl( 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 void setProperty( 30 java.util.List newValue 31 ) { 32 refSetValue("org:openmdx:filter1:Filter:property", newValue); 33 } 34 35 public void setProperty( 36 org.openmdx.filter1.cci.Property[] newValue 37 ) { 38 refSetValue("org:openmdx:filter1:Filter:property", newValue); 39 } 40 41 public org.openmdx.filter1.cci.Property getProperty( 45 String name 46 ) { 47 return (org.openmdx.filter1.cci.Property)refGetValue( 48 "org:openmdx:filter1:Filter:property", 49 name 50 ); 51 } 52 53 public java.util.Collection getProperty( 57 ) { 58 return (java.util.Collection )refGetValue( 59 "org:openmdx:filter1:Filter:property" 60 ); 61 } 62 63 public java.util.List getProperty( 64 org.openmdx.filter1.cci.PropertyFilter filter 65 ) { 66 return ((org.openmdx.compatibility.base.collection.Container)refGetValue( 67 "org:openmdx:filter1:Filter:property" 68 )).toList(filter); 69 } 70 71 public void addProperty ( 75 String name, 76 org.openmdx.filter1.cci.Property newValue 77 ) { 78 refAddValue( 79 "org:openmdx:filter1:Filter:property", 80 name, 81 newValue 82 ); 83 } 84 85 public void addProperty ( 89 org.openmdx.filter1.cci.Property newValue 90 ) { 91 refAddValue( 92 "org:openmdx:filter1:Filter:property", 93 newValue 94 ); 95 } 96 97 public void removeProperty ( 101 String name 102 ) { 103 refRemoveValue( 104 "org:openmdx:filter1:Filter:property", 105 name 106 ); 107 } 108 109 } 113 | Popular Tags |