some new producer related files added
[mir.git] / source / mir / producer / ProducerFactory.java
1 package mir.producer;
2
3 import java.util.*;
4
5 public interface ProducerFactory {
6   public Producer makeProducer(String aVerb) throws ProducerException;
7   public Iterator verbs() throws ProducerException;
8 }
9