1 package org.opencrx.kernel.model1.cci; 14 15 17 public interface OperationFilter 18 extends 19 org.opencrx.kernel.model1.cci.BehaviouralFeatureFilter { 20 21 28 public void forAllException ( 29 short operator, 30 org.opencrx.kernel.model1.cci.Exception[] filterValues 31 ); 32 33 37 public void thereExistsException ( 38 short operator, 39 org.opencrx.kernel.model1.cci.Exception[] filterValues 40 ); 41 42 46 public void forAllException ( 47 short operator, 48 java.util.Collection filterValues 49 ); 50 51 55 public void thereExistsException ( 56 short operator, 57 java.util.Collection filterValues 58 ); 59 60 67 public void forAllIsQuery ( 68 short operator, 69 boolean[] filterValues 70 ); 71 72 76 public void thereExistsIsQuery ( 77 short operator, 78 boolean[] filterValues 79 ); 80 81 85 public void forAllIsQuery ( 86 short operator, 87 java.util.Collection filterValues 88 ); 89 90 94 public void thereExistsIsQuery ( 95 short operator, 96 java.util.Collection filterValues 97 ); 98 99 104 public void orderByIsQuery ( 105 short order 106 ); 107 108 115 public void forAllSemantics ( 116 short operator, 117 String [] filterValues 118 ); 119 120 124 public void thereExistsSemantics ( 125 short operator, 126 String [] filterValues 127 ); 128 129 133 public void forAllSemantics ( 134 short operator, 135 java.util.Collection filterValues 136 ); 137 138 142 public void thereExistsSemantics ( 143 short operator, 144 java.util.Collection filterValues 145 ); 146 147 152 public void orderBySemantics ( 153 short order 154 ); 155 156 163 public void forAllSignature ( 164 short operator, 165 String [] filterValues 166 ); 167 168 172 public void thereExistsSignature ( 173 short operator, 174 String [] filterValues 175 ); 176 177 181 public void forAllSignature ( 182 short operator, 183 java.util.Collection filterValues 184 ); 185 186 190 public void thereExistsSignature ( 191 short operator, 192 java.util.Collection filterValues 193 ); 194 195 200 public void orderBySignature ( 201 short order 202 ); 203 204 } 208 | Popular Tags |