1 package org.opencrx.kernel.depot1.cci; 14 15 17 public interface DepotEntityRelationshipFilter 18 extends 19 org.opencrx.kernel.generic.cci.CrxObjectFilter { 20 21 28 public void forAllDescription ( 29 short operator, 30 String [] filterValues 31 ); 32 33 37 public void thereExistsDescription ( 38 short operator, 39 String [] filterValues 40 ); 41 42 46 public void forAllDescription ( 47 short operator, 48 java.util.Collection filterValues 49 ); 50 51 55 public void thereExistsDescription ( 56 short operator, 57 java.util.Collection filterValues 58 ); 59 60 65 public void orderByDescription ( 66 short order 67 ); 68 69 76 public void forAllEntity1 ( 77 short operator, 78 org.opencrx.kernel.depot1.cci.DepotEntity[] filterValues 79 ); 80 81 85 public void thereExistsEntity1 ( 86 short operator, 87 org.opencrx.kernel.depot1.cci.DepotEntity[] filterValues 88 ); 89 90 94 public void forAllEntity1 ( 95 short operator, 96 java.util.Collection filterValues 97 ); 98 99 103 public void thereExistsEntity1 ( 104 short operator, 105 java.util.Collection filterValues 106 ); 107 108 115 public void forAllEntity2 ( 116 short operator, 117 org.opencrx.kernel.depot1.cci.DepotEntity[] filterValues 118 ); 119 120 124 public void thereExistsEntity2 ( 125 short operator, 126 org.opencrx.kernel.depot1.cci.DepotEntity[] filterValues 127 ); 128 129 133 public void forAllEntity2 ( 134 short operator, 135 java.util.Collection filterValues 136 ); 137 138 142 public void thereExistsEntity2 ( 143 short operator, 144 java.util.Collection filterValues 145 ); 146 147 154 public void forAllName ( 155 short operator, 156 String [] filterValues 157 ); 158 159 163 public void thereExistsName ( 164 short operator, 165 String [] filterValues 166 ); 167 168 172 public void forAllName ( 173 short operator, 174 java.util.Collection filterValues 175 ); 176 177 181 public void thereExistsName ( 182 short operator, 183 java.util.Collection filterValues 184 ); 185 186 191 public void orderByName ( 192 short order 193 ); 194 195 202 public void forAllRelationshipType ( 203 short operator, 204 short[] filterValues 205 ); 206 207 211 public void thereExistsRelationshipType ( 212 short operator, 213 short[] filterValues 214 ); 215 216 220 public void forAllRelationshipType ( 221 short operator, 222 java.util.Collection filterValues 223 ); 224 225 229 public void thereExistsRelationshipType ( 230 short operator, 231 java.util.Collection filterValues 232 ); 233 234 239 public void orderByRelationshipType ( 240 short order 241 ); 242 243 } 247 | Popular Tags |