Source for file DataImportFormat.php
Documentation is available at DataImportFormat.php
* Description: Chart data import
* @copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
public /*protected*/ $chart;
function __get( $property ) {
$method = "get{$property}";
function __set ( $property,$value ) {
$method = "set{$property}";
return $this->$method($value);
/** Creates a new instance of DataImportFormat */
public function openFileName($fileName) /* TODO throws FileNotFoundException,
IOException, ClassNotFoundException {
BufferedInputStream bf=new BufferedInputStream(new FileInputStream(fileName));
public function openFile($file) throws FileNotFoundException,
IOException, ClassNotFoundException {
public function openStream($stream) throws IOException,
|