Exemplo n.º 1
0
        public ISet <EventBean> LookupCollectKeys(EventBean theEvent, PropertySortedEventTable index, ExprEvaluatorContext context, IList <Object> keys)
        {
            Object point = base.EvaluateLookup(theEvent, context);

            keys.Add(point);
            return(index.LookupGreater(point));
        }
Exemplo n.º 2
0
 public ISet<EventBean> Lookup(
     EventBean theEvent,
     PropertySortedEventTable index,
     ExprEvaluatorContext context)
 {
     return index.LookupGreater(base.EvaluateLookup(theEvent, context));
 }