Blame view

src/mior/model/multi/OCLTask.java 187 Bytes
89f70c1ec   glaville   import current mc...
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);
  	
  }