1 <?xml version="1.0" encoding="UTF-8"?>
4 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
5 * Copyright (C) 2010 - 2011 - Calixte DENIZET <calixte@contrib.scilab.org>
7 * Copyright (C) 2012 - 2016 - Scilab Enterprises
9 * This file is hereby licensed under the terms of the GNU GPL v2.0,
10 * pursuant to article 5.3.4 of the CeCILL v.2.1.
11 * This file was originally licensed under the terms of the CeCILL v2.1,
12 * and continues to be available under such terms.
13 * For more information, see the COPYING file which you should have received
14 * along with this program.
18 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:lang="en" xml:id="junwraprem">
20 <refname>junwraprem</refname>
21 <refpurpose>Convert a Java object into a Scilab native type and remove it from the Java side</refpurpose>
26 [var_1, var_2, ...] = junwraprem(obj_1 [, obj_2 [, ...]])
30 <title>Parameters</title>
35 <para>A mlist typed _JObj</para>
41 <para>Scilab variable</para>
47 <title>Description</title>
49 Convert a native Java object in a Scilab's one and remove it from Java.
53 <title>Examples</title>
54 <programlisting role="example"><![CDATA[
56 jimport java.lang.String;
58 s = String.new("Hello JIMS !!");
61 [S1 S2] = junwraprem(s1, s2)
67 <refsection role="see also">
68 <title>See also</title>
69 <simplelist type="inline">
71 <link linkend="junwrap">junwrap</link>
74 <link linkend="jwrap">jwrap</link>
79 <title>History</title>
82 <revnumber>5.5.0</revnumber>
84 Function introduced. Based on the 'JIMS' module. The main difference in the behavior compared to the JIMS module is that <link linkend="jautoUnwrap">jautoUnwrap</link> is enabled by default.