*/
public BPFProgram compile(FilterTarget target) throws FilterSyntaxError,
FilterNotFoundException {
if (this.target != target) {
throw new FilterNotFoundException(
"Unable to compile expression to filter target [" + target + "]");
}
return program;
}