1 package org.opencrx.kernel.model1.cci; 14 15 17 public interface GeneralizableElementFilter 18 extends 19 org.opencrx.kernel.model1.cci.NamespaceFilter { 20 21 28 public void forAllIsAbstract ( 29 short operator, 30 boolean[] filterValues 31 ); 32 33 37 public void thereExistsIsAbstract ( 38 short operator, 39 boolean[] filterValues 40 ); 41 42 46 public void forAllIsAbstract ( 47 short operator, 48 java.util.Collection filterValues 49 ); 50 51 55 public void thereExistsIsAbstract ( 56 short operator, 57 java.util.Collection filterValues 58 ); 59 60 65 public void orderByIsAbstract ( 66 short order 67 ); 68 69 76 public void forAllSupertype ( 77 short operator, 78 org.opencrx.kernel.model1.cci.GeneralizableElement[] filterValues 79 ); 80 81 85 public void thereExistsSupertype ( 86 short operator, 87 org.opencrx.kernel.model1.cci.GeneralizableElement[] filterValues 88 ); 89 90 94 public void forAllSupertype ( 95 short operator, 96 java.util.Collection filterValues 97 ); 98 99 103 public void thereExistsSupertype ( 104 short operator, 105 java.util.Collection filterValues 106 ); 107 108 115 public void forAllVisibility ( 116 short operator, 117 short[] filterValues 118 ); 119 120 124 public void thereExistsVisibility ( 125 short operator, 126 short[] filterValues 127 ); 128 129 133 public void forAllVisibility ( 134 short operator, 135 java.util.Collection filterValues 136 ); 137 138 142 public void thereExistsVisibility ( 143 short operator, 144 java.util.Collection filterValues 145 ); 146 147 152 public void orderByVisibility ( 153 short order 154 ); 155 156 } 160 | Popular Tags |