1 22 23 package org.xquark.mediator.plan ; 24 25 import org.xquark.mediator.runtime.MediatorException; 26 27 public abstract class ZeroResultSet extends ResultSet { 28 private static final String RCSRevision = "$Revision: 1.5 $"; 32 private static final String RCSName = "$Name: $"; 33 39 public ZeroResultSet(ZeroOp operator, DynamicContext context) throws MediatorException { 40 super(operator, context) ; 41 if ((operator == null)) return ; 43 } 44 45 50 protected void evaluate(boolean non_blocking) throws MediatorException { 51 } 52 53 } 54 | Popular Tags |