1 package com.wutka.dtd;
2
3 import java.io.*;
4
5 /*** Defines the method used for writing DTD information to a PrintWriter
6 *
7 * @author Mark Wutka
8 * @version $Revision: 1.16 $ $Date: 2002/07/19 01:20:11 $ by $Author: wutka $
9 */
10 public interface DTDOutput
11 {
12 public void write(PrintWriter out) throws IOException;
13 }