package org.simantics.team.ui; import org.simantics.db.ChangeSetIdentifier; import org.simantics.db.exception.DatabaseException; public interface Command { ChangeSetIdentifier getChangeSetIdentifier() throws DatabaseException ; void dumpToSelectedRevision() throws DatabaseException ; void undoToSelectedRevision() throws DatabaseException ; void initUndoListFromSelectedRevision() throws DatabaseException; }