View Javadoc

1   package nl.tudelft.goal.ut2004.messages;
2   
3   import cz.cuni.amis.utils.exception.PogamutException;
4   
5   public interface Action {
6   
7   	void execute() throws PogamutException;
8   
9   }