the patch of mh for tomcat 4.1.* made the servlet-config incompatible with tomcat...
[mir.git] / source / mir / producer / Producer.java
1 package mir.producer;
2
3 import java.io.*;
4
5 public interface Producer {
6   public void produce( PrintWriter aLogger ) throws ProducerFailure, ProducerExc;
7 }