~ubuntu-branches/ubuntu/trusty/scilab/trusty

« back to all changes in this revision

Viewing changes to modules/javasci/includes/javasci_SciDoubleArray.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-02 11:02:49 UTC
  • mfrom: (1.4.6)
  • Revision ID: package-import@ubuntu.com-20120802110249-0v5953emkp25geuz
Tags: 5.4.0-beta-2-1~exp1
* New upstream release
* Remove libscilab-java (remove upstream). Use libscilab2-java instead.

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) 2005 - INRIA - Allan CORNET
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
 
#ifndef _Included_javasci_SciDoubleArray
14
 
#define _Included_javasci_SciDoubleArray
15
 
 
16
 
#include "javasci_globals.h"
17
 
#ifdef __cplusplus
18
 
extern "C" {
19
 
#endif
20
 
 
21
 
/*! private static native void Initialize(); */
22
 
JNIEXPORT void JNICALL Java_javasci_SciDoubleArray_Initialize (JNIEnv *env, jclass cl);
23
 
 
24
 
/*! private native int getRowFromScilab(String name); */
25
 
JNIEXPORT jint JNICALL Java_javasci_SciDoubleArray_getRowFromScilab(JNIEnv *, jobject, jstring);
26
 
 
27
 
/*! private native int getColFromScilab(String name); */
28
 
JNIEXPORT jint JNICALL Java_javasci_SciDoubleArray_getColFromScilab(JNIEnv *, jobject, jstring);
29
 
 
30
 
/*! public native boolean Job(String job); */
31
 
JNIEXPORT jboolean JNICALL Java_javasci_SciDoubleArray_Job (JNIEnv *, jobject, jstring);
32
 
 
33
 
/*! public native void Get(); */
34
 
JNIEXPORT void JNICALL Java_javasci_SciDoubleArray_Get(JNIEnv *env , jobject obj_this);
35
 
 
36
 
/*! public native void Send(); */
37
 
JNIEXPORT void JNICALL Java_javasci_SciDoubleArray_Send(JNIEnv *env , jobject obj_this);
38
 
 
39
 
/*! public native double GetElement(int indr,int indc); */
40
 
JNIEXPORT jdouble JNICALL Java_javasci_SciDoubleArray_GetElement(JNIEnv *env , jobject obj_this,jint indr, jint indc);
41
 
 
42
 
#ifdef __cplusplus
43
 
}
44
 
#endif
45
 
#endif
46
 
/*--------------------------------------------------------------------------*/