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