package ch.ethz.syslab.telesto.common.protocol.handler;
import ch.ethz.syslab.telesto.common.protocol.*;
/*
* Do not edit this file! {# Ignore this, you're in the right place. #}
*
* Edit the template at tools/protocol/telesto/templates/handler.java instead.
*/
public interface {{ handler }} {
{%- for message in messages if message and condition(message) %}
public abstract Packet handle({{ message.__name__ }}{{ superclass }} packet) throws PacketProcessingException;
{%- endfor %}
}