1 27 package ch.ethz.prose.filter; 28 29 import java.io.Serializable ; 30 31 import ch.ethz.jvmai.JoinPoint; 32 import ch.ethz.prose.engine.JoinPointRequest; 33 34 47 public 48 abstract class PointFilter implements Serializable { 49 50 51 52 60 abstract public boolean isSpecialRequest(JoinPointRequest evRec); 61 62 63 71 abstract public boolean isSpecialEvent(JoinPoint execEvent); 72 } 73 74 75 | Popular Tags |