Blame view

src/mior/model/multi/OCLTask.java 187 Bytes
1b1e928cc   glaville   initial import of...
1
2
3
4
5
6
7
8
9
10
  package mior.model.multi;
  
  import mcmas.core.MCMCommandQueue;
  import mcmas.core.MCMContext;
  
  public interface OCLTask {
  	
  	public void run(MCMContext context, MCMCommandQueue queue);
  	
  }