/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/java/director_minimal_runme.java
28 строк
620 B
Erez Geva
Add a minimal director test (#3346)
24 фев 2026, 11:58
Не верифицирован
24 фев 2026, 11:58
15cb415
Код
Авторство
О чём код?
import director_minimal.*; public class director_minimal_runme { static { try { System.loadLibrary("director_minimal"); } catch (UnsatisfiedLinkError e) { System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e); System.exit(1); } } public static void main(String argv[]) throws Throwable { MyMinimal c = new MyMinimal(); if (!c.get()) throw new Exception("Should return true"); } } class MyMinimal extends Minimal { public boolean run() { return true; } }