i changed the exception-handling of the new producers and localizers to use the multe...
[mir.git] / source / mircoders / localizer / MirProducerToolLocalizer.java
1 package mircoders.localizer;
2
3 import java.util.*;
4 import java.io.*;
5
6 public interface MirProducerToolLocalizer {
7   public void initializeGenerationValueSet(Map aValueSet);
8   public PrintWriter openWriter(String anIdentifier) throws MirLocalizerFailure;
9   public void closeWriter(PrintWriter aWriter);
10 }