Update of /cvsroot/javadocbook/javadocbook/src/net/sf/javadocbook
In directory usw-pr-cvs1:/tmp/cvs-serv14351/net/sf/javadocbook
Added Files:
Transformer.java
Log Message:
Initital add.
--- NEW FILE: Transformer.java ---
/*
* Transformer.java
*
* This file is part of Java Docbook.
*
* Java Docbook is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* Java Docbook is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Java Docbook; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Copyright 2002, Mike Heath
*
* Main.java
*
* Created on June 27, 2002, 2:57 AM
* Created by Mike Heath (he...@us...)
* $Author: heathm $
* $Date: 2002/07/19 20:58:14 $
* $Revision: 1.1 $
*/
package net.sf.javadocbook;
import java.io.InputStream;
import java.io.OutputStream;
/**
* The different types of transformers should implement this interface.
*
* @author he...@us...
*/
public interface Transformer {
/**
* This method is invoked to transform a given stream. The stream <code>in</code> is transformed and out put to
* stream <code>out</code>.
*
* @param in - The input to be transformed.
* @param out - The transformed input stream.
*/
public void transform(InputStream in, OutputStream out);
}
/*
* $Log: Transformer.java,v $
* Revision 1.1 2002/07/19 20:58:14 heathm
* Initital add.
*
*/
|