1 package org.opencrx.kernel.model1.cci; 14 15 17 public interface EditableStructureFieldFilter 18 extends 19 org.opencrx.kernel.base.cci.SecureObjectFilter, 20 org.opencrx.kernel.model1.cci.EditableTypedElementFilter, 21 org.openmdx.base.cci.BasicObjectFilter { 22 23 30 public void forAllMaxLength ( 31 short operator, 32 int[] filterValues 33 ); 34 35 39 public void thereExistsMaxLength ( 40 short operator, 41 int[] filterValues 42 ); 43 44 48 public void forAllMaxLength ( 49 short operator, 50 java.util.Collection filterValues 51 ); 52 53 57 public void thereExistsMaxLength ( 58 short operator, 59 java.util.Collection filterValues 60 ); 61 62 67 public void orderByMaxLength ( 68 short order 69 ); 70 71 78 public void forAllMultiplicity ( 79 short operator, 80 short[] filterValues 81 ); 82 83 87 public void thereExistsMultiplicity ( 88 short operator, 89 short[] filterValues 90 ); 91 92 96 public void forAllMultiplicity ( 97 short operator, 98 java.util.Collection filterValues 99 ); 100 101 105 public void thereExistsMultiplicity ( 106 short operator, 107 java.util.Collection filterValues 108 ); 109 110 115 public void orderByMultiplicity ( 116 short order 117 ); 118 119 126 public void forAllUpperBound ( 127 short operator, 128 int[] filterValues 129 ); 130 131 135 public void thereExistsUpperBound ( 136 short operator, 137 int[] filterValues 138 ); 139 140 144 public void forAllUpperBound ( 145 short operator, 146 java.util.Collection filterValues 147 ); 148 149 153 public void thereExistsUpperBound ( 154 short operator, 155 java.util.Collection filterValues 156 ); 157 158 163 public void orderByUpperBound ( 164 short order 165 ); 166 167 } 171 | Popular Tags |