]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.team.ui/src/org/simantics/team/ui/Command.java
Removed contact application support prints
[simantics/platform.git] / bundles / org.simantics.team.ui / src / org / simantics / team / 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 }