comparison CodeGeneration/JavaFunctions.mustache @ 0:3ecef5782f2c

initial commit
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 18 Oct 2023 17:59:44 +0200
parents
children 26c08ff926a3
comparison
equal deleted inserted replaced
-1:000000000000 0:3ecef5782f2c
1 package be.uclouvain.orthanc;
2
3 /**
4 * SPDX-FileCopyrightText: 2023 Sebastien Jodogne, UCLouvain, Belgium
5 * SPDX-License-Identifier: GPL-3.0-or-later
6 */
7
8 /**
9 * Java plugin for Orthanc
10 * Copyright (C) 2023 Sebastien Jodogne, UCLouvain, Belgium
11 *
12 * This program is free software: you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation, either version 3 of the
15 * License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program. If not, see http://www.gnu.org/licenses/.
24 **/
25
26
27 /**
28 * Wrapper around the global functions provided by the Orthanc SDK.
29 **/
30 public class Functions {
31
32 {{#functions}}
33 {{^is_object}}
34 {{#has_documentation}}
35 /**
36 {{#documentation}}
37 * {{line}}
38 {{/documentation}}
39 **/
40 {{/has_documentation}}
41 public static {{return.java_wrapper_type}} {{java_name}}({{#args}}
42 {{java_wrapper_type}} {{sdk_name}}{{^last}},{{/last}}{{/args}}) {
43 {{java_return_start}}NativeSDK.{{c_function}}({{#args}}{{java_wrapper_accessor}}{{^last}}, {{/last}}{{/args}}){{java_return_end}};
44 }
45
46 {{/is_object}}
47 {{/functions}}
48 }