1 package org.opencrx.kernel.activity1.cci; 14 15 17 public interface MeetingFilter 18 extends 19 org.opencrx.kernel.activity1.cci.ActivityFilter, 20 org.opencrx.kernel.generic.cci.CrxObjectFilter { 21 22 29 public void forAllIsAllDayEvent ( 30 short operator, 31 boolean[] filterValues 32 ); 33 34 38 public void thereExistsIsAllDayEvent ( 39 short operator, 40 boolean[] filterValues 41 ); 42 43 47 public void forAllIsAllDayEvent ( 48 short operator, 49 java.util.Collection filterValues 50 ); 51 52 56 public void thereExistsIsAllDayEvent ( 57 short operator, 58 java.util.Collection filterValues 59 ); 60 61 66 public void orderByIsAllDayEvent ( 67 short order 68 ); 69 70 77 public void forAllLocation ( 78 short operator, 79 String [] filterValues 80 ); 81 82 86 public void thereExistsLocation ( 87 short operator, 88 String [] filterValues 89 ); 90 91 95 public void forAllLocation ( 96 short operator, 97 java.util.Collection filterValues 98 ); 99 100 104 public void thereExistsLocation ( 105 short operator, 106 java.util.Collection filterValues 107 ); 108 109 114 public void orderByLocation ( 115 short order 116 ); 117 118 } 122 | Popular Tags |