]> gerrit.simantics Code Review - simantics/platform.git/blob - CommandInvoker.java
3e71a5c131ad51e955f15f4b24b2dcf9dccd99b4
[simantics/platform.git] / CommandInvoker.java
1 package org.simantics.db.testing.common;
2
3 public interface CommandInvoker<T> {
4
5         void invoke(CommandSequenceEnvironment environment, T parameter) throws Exception;
6         
7 }