]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.document.server/src/org/simantics/document/server/IEventCommand.java
b971fef4c6b6ca8540d8cc257c7166db1d0c7f04
[simantics/platform.git] / bundles / org.simantics.document.server / src / org / simantics / document / server / IEventCommand.java
1 package org.simantics.document.server;
2
3 public interface IEventCommand {
4     
5     public void setNext(IEventCommand command);
6     public IEventCommand getNext();    
7     public void handleCommand();
8     public void commandSuccess();
9     public void commandError(String errorMessage);
10
11 }