]> gerrit.simantics Code Review - simantics/platform.git/blob - src/org/simantics/db/testing/common/CommandInvoker.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / src / org / simantics / db / testing / common / 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 }