~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/hdf5/src/java/org/scilab/modules/hdf5/read/H5ReadScilabTList.java

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3
 
 *  Copyright (C) 2009-2009 - DIGITEO - Bruno JOFRET
4
 
 * 
5
 
 *  This file must be used under the terms of the CeCILL.
6
 
 *  This source file is licensed as described in the file COPYING, which
7
 
 *  you should have received as part of this distribution.  The terms
8
 
 *  are also available at
9
 
 *  http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
10
 
 * 
11
 
 */
12
 
 
13
 
package org.scilab.modules.hdf5.read;
14
 
 
15
 
import java.util.ArrayList;
16
 
 
17
 
import ncsa.hdf.hdf5lib.exceptions.HDF5Exception;
18
 
 
19
 
import org.scilab.modules.types.ScilabTList;
20
 
 
21
 
public class H5ReadScilabTList extends H5ReadScilabCommonList {
22
 
 
23
 
    public static void readData(int dataSetId, ScilabTList scilabList) throws NullPointerException, HDF5Exception {
24
 
        readData(dataSetId, (ArrayList) scilabList);
25
 
    }
26
 
 
27
 
}