Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Java HTML Tidy - JTidy
* HTML parser and pretty printer
*
* Copyright (c) 1998-2000 World Wide Web Consortium (Massachusetts
* Institute of Technology, Institut National de Recherche en
* Informatique et en Automatique, Keio University). All Rights
* Reserved.
*
* Contributing Author(s):
*
* Dave Raggett
* Andy Quick (translation to Java)
* Gary L Peskin (Java development)
* Sami Lempinen (release management)
* Fabrizio Giustina
*
* The contributing author(s) would like to thank all those who
* helped with testing, bug fixes, and patience. This wouldn't
* have been possible without all of you.
*
* COPYRIGHT NOTICE:
*
* This software and documentation is provided "as is," and
* the copyright holders and contributing author(s) make no
* representations or warranties, express or implied, including
* but not limited to, warranties of merchantability or fitness
* for any particular purpose or that the use of the software or
* documentation will not infringe any third party patents,
* copyrights, trademarks or other rights.
*
* The copyright holders and contributing author(s) will not be
* liable for any direct, indirect, special or consequential damages
* arising out of any use of the software or documentation, even if
* advised of the possibility of such damage.
*
* Permission is hereby granted to use, copy, modify, and distribute
* this source code, or portions hereof, documentation and executables,
* for any purpose, without fee, subject to the following restrictions:
*
* 1. The origin of this source code must not be misrepresented.
* 2. Altered versions must be plainly marked as such and must
* not be misrepresented as being the original source.
* 3. This Copyright notice may not be removed or altered from any
* source or altered source distribution.
*
* The copyright holders and contributing author(s) specifically
* permit, without fee, and encourage the use of this source code
* as a component for supporting the Hypertext Markup Language in
* commercial products. If you use this source code in a product,
* acknowledgment is not required but would be appreciated.
*
*/
package org.w3c.tidy;
import java.io.InputStream;
import java.io.Reader;
import java.io.UnsupportedEncodingException;
/**
* Tidy Input factory.
* @author Fabrizio Giustina
* @version $Revision$ ($Author$)
*/
public final class StreamInFactory
{
/**
* Don't instantiate.
*/
private StreamInFactory()
{
// unused
}
/**
* Returns the appropriate StreamIn implementation.
* @param config configuration instance
* @param stream input stream
* @return StreamIn instance
*/
public static StreamIn getStreamIn(Configuration config, InputStream stream)
{
try
{
return new StreamInJavaImpl(stream, config.getInCharEncodingName(), config.tabsize);
}
catch (UnsupportedEncodingException e)
{
throw new RuntimeException("Unsupported encoding: " + e.getMessage());
}
}
/**
* Returns the appropriate StreamIn implementation.
* @param config configuration instance
* @param reader the reader to read from
* @return StreamIn instance
*/
public static StreamIn getStreamIn(Configuration config, Reader reader)
{
return new StreamInJavaImpl(reader, config.tabsize);
}
}