/************************************************************************ * * The Contents of this file are made available subject to the terms of * * - GNU Lesser General Public License Version 2.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * The Initial Developer of the Original Code is: Sun Microsystems, Inc. * * Copyright: 2000 by Sun Microsystems, Inc. * * All Rights Reserved. * * Contributor(s): _______________________________________ * * This version is adapted for Writer2LaTeX * version 1.0 (2008-11-22) * ************************************************************************/ package writer2latex.xmerge; //import java.io.OutputStream; import java.io.InputStream; import java.io.IOException; import writer2latex.api.OutputFile; /** *

A Document represents any Document * to be converted and the resulting Document from any * conversion.

* * * @author Herbie Ong */ public interface Document extends OutputFile { /** *

Reads the content from the InputStream into * the Document.

* *

This method may not be thread-safe. * Implementations may or may not synchronize this * method. User code (i.e. caller) must make sure that * calls to this method are thread-safe.

* * @param is InputStream to read in the * Document content. * * @throws IOException If any I/O error occurs. */ public void read(InputStream is) throws IOException; /** * Returns the Document name with no file extension. * * @return The Document name with no file extension. */ public String getName(); }