]> gerrit.simantics Code Review - simantics/platform.git/blob - ui/Command.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / ui / Command.java
1 package org.simantics.team.ui;
2
3 import org.simantics.db.ChangeSetIdentifier;
4 import org.simantics.db.exception.DatabaseException;
5
6 public interface Command {
7     ChangeSetIdentifier getChangeSetIdentifier() throws DatabaseException ;
8     void dumpToSelectedRevision() throws DatabaseException ;
9     void undoToSelectedRevision() throws DatabaseException ;
10     void initUndoListFromSelectedRevision() throws DatabaseException;
11 }