/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/java/java_pragmas_runme.java
14 строк
421 B
Dave Beazley
The great merge
01 дек 2002, 01:01
01 дек 2002, 01:01
12a43ed
Код
Авторство
О чём код?
import java_pragmas.*; public class java_pragmas_runme { // No system.loadLibrary() as the JNI class will do this public static void main(String argv[]) { // Call a JNI class function. Normally this is not possible as the class is protected, however, the jniclassmodifiers pragma has changed this. long int_pointer = java_pragmasJNI.get_int_pointer(); java_pragmas.added_function("hello"); } }