All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cobraparser.html.parser.InputSourceImpl Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
/*
    GNU LESSER GENERAL PUBLIC LICENSE
    Copyright (C) 2006 The Lobo Project

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

    Contact info: [email protected]
 */
/*
 * Created on Oct 22, 2005
 */
package org.cobraparser.html.parser;

import java.io.InputStream;
import java.io.Reader;

import org.xml.sax.InputSource;

/**
 * The InputSourceImpl class implements the
 * InputSource interface.
 *
 * @author J. H. S.
 */
public class InputSourceImpl extends InputSource {
  /**
   * Constructs an InputSourceImpl.
   *
   * @deprecated Use a constructor that takes either a stream or a reader.
   */
  @Deprecated
  public InputSourceImpl() {
    super();
  }

  /**
   * Constructs an InputSourceImpl.
   * 

* It is valid to use this constructor, but it is generally recommended that * callers use one of the constructors that take a reader or an input stream * instead. * * @param uri * The URI (or systemID) of the document. */ public InputSourceImpl(final String uri) { super(uri); } /** * Constructs an InputSourceImpl. * * @param byteStream * The input stream where content can be read. * @deprecated Use constructor with uri parameter. */ @Deprecated public InputSourceImpl(final InputStream byteStream) { super(byteStream); } /** * Constructs an InputSourceImpl. * * @param characterStream * The Reader where characters can be read. * @deprecated Use constructor with uri parameter. */ @Deprecated public InputSourceImpl(final Reader characterStream) { super(characterStream); } /** * Constructs an InputSourceImpl. * * @param characterStream * The Reader where characters can be read. * @param uri * The URI of the document. */ public InputSourceImpl(final Reader characterStream, final String uri) { super(characterStream); this.setSystemId(uri); } /** * Constructs an InputSourceImpl. * * @param byteStream * The input stream where content can be read. * @param uri * The URI that identifies the content. * @param charset * The character set of the input stream. */ public InputSourceImpl(final InputStream byteStream, final String uri, final String charset) { super(byteStream); this.setEncoding(charset); this.setSystemId(uri); this.setPublicId(uri); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy