XMLDataInputStreamCreator.java from BIRT at Krugle
Show XMLDataInputStreamCreator.java syntax highlighted
/*******************************************************************************
* Copyright (c) 2004, 2005 Actuate Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Actuate Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.birt.report.data.oda.xml.util;
import java.io.InputStream;
import org.eclipse.datatools.connectivity.oda.OdaException;
/**
* This class is used to manager the XML data source. If the XML data source is
* passed as InputStream or URL using protocol other than File, then we will
* make a local cache for it to accelerate the processing.
*
* @deprecated Please use DTP xml driver
*/
public class XMLDataInputStreamCreator
extends
org.eclipse.datatools.enablement.oda.xml.util.XMLDataInputStreamCreator
{
/**
*
* @param is
* @throws OdaException
*/
protected XMLDataInputStreamCreator( InputStream is ) throws OdaException
{
super( is );
}
/**
*
* @param url
* @throws OdaException
*/
protected XMLDataInputStreamCreator( String url ) throws OdaException
{
super( url );
}
}
See more files for this project here