mirror of
https://github.com/eclipse/upm.git
synced 2025-03-23 17:00:03 +03:00
22 lines
400 B
OpenEdge ABL
22 lines
400 B
OpenEdge ABL
%module javaupm_button
|
|
%include "../upm.i"
|
|
|
|
%apply int {mraa::Edge}
|
|
|
|
%{
|
|
#include "button.hpp"
|
|
%}
|
|
|
|
%include "button.hpp"
|
|
|
|
%pragma(java) jniclasscode=%{
|
|
static {
|
|
try {
|
|
System.loadLibrary("javaupm_button");
|
|
} catch (UnsatisfiedLinkError e) {
|
|
System.err.println("Native code library failed to load. \n" + e);
|
|
System.exit(1);
|
|
}
|
|
}
|
|
%}
|