i changed the exception-handling of the new producers and localizers to use the multe...
[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 ProducerFailure;
7   public Iterator verbs();
8 }
9