comparison CodeGeneration/JavaNativeSDK.mustache @ 8:26c08ff926a3

added warning about auto-generated files
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 19 Oct 2023 11:21:20 +0200
parents 3ecef5782f2c
children 15dc698243ac
comparison
equal deleted inserted replaced
7:b14ed1ea3a23 8:26c08ff926a3
22 * You should have received a copy of the GNU General Public License 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/>. 23 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 **/ 24 **/
25 25
26 26
27 // WARNING: Auto-generated file. Do not modify it by hand.
28
27 class NativeSDK { 29 class NativeSDK {
28 {{#functions}} 30 {{#functions}}
29 public static native {{return.java_type}} {{c_function}}({{#class_name}}long self{{#has_args}},{{/has_args}} {{/class_name}}{{#args}}{{java_type}} {{name}}{{^last}}, {{/last}}{{/args}}); 31 public static native {{return.java_type}} {{c_function}}({{#class_name}}long self{{#has_args}},{{/has_args}} {{/class_name}}{{#args}}{{java_type}} {{name}}{{^last}}, {{/last}}{{/args}});
30 {{/functions}} 32 {{/functions}}
31 } 33 }