/
tisit
/
OpenPLC_v3
Обзор
Документация
Войти
/
tisit
/
OpenPLC_v3
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
utils/dnp3_src/java/cpp/jni/JNIAnalogOutputDouble64.cpp
65 строк
2 KB
thiagoralves
First commit. OpenPLC v3 beta 1
14 июн 2018, 20:43
14 июн 2018, 20:43
1b10e97
Код
Авторство
О чём код?
// // _ _ ______ _ _ _ _ _ _ _ // | \ | | | ____| | (_) | (_) | | | | // | \| | ___ | |__ __| |_| |_ _ _ __ __ _| | | | // | . ` |/ _ \ | __| / _` | | __| | '_ \ / _` | | | | // | |\ | (_) | | |___| (_| | | |_| | | | | (_| |_|_|_| // |_| \_|\___/ |______\__,_|_|\__|_|_| |_|\__, (_|_|_) // __/ | // |___/ // // This file is auto-generated. Do not edit manually // // Copyright 2016 Automatak LLC // // Automatak LLC (www.automatak.com) licenses this file // to you under the the Apache License Version 2.0 (the "License"): // // http://www.apache.org/licenses/LICENSE-2.0.html // #include "JNIAnalogOutputDouble64.h" namespace jni { namespace cache { bool AnalogOutputDouble64::init(JNIEnv* env) { auto clazzTemp = env->FindClass("Lcom/automatak/dnp3/AnalogOutputDouble64;"); this->clazz = (jclass) env->NewGlobalRef(clazzTemp); env->DeleteLocalRef(clazzTemp); this->init2Constructor = env->GetMethodID(this->clazz, "<init>", "(DLcom/automatak/dnp3/enums/CommandStatus;)V"); if(!this->init2Constructor) return false; this->valueField = env->GetFieldID(this->clazz, "value", "D"); if(!this->valueField) return false; this->statusField = env->GetFieldID(this->clazz, "status", "Lcom/automatak/dnp3/enums/CommandStatus;"); if(!this->statusField) return false; return true; } void AnalogOutputDouble64::cleanup(JNIEnv* env) { env->DeleteGlobalRef(this->clazz); } LocalRef<jobject> AnalogOutputDouble64::init2(JNIEnv* env, jdouble arg0, jobject arg1) { return LocalRef<jobject>(env, env->NewObject(this->clazz, this->init2Constructor, arg0, arg1)); } jdouble AnalogOutputDouble64::getvalue(JNIEnv* env, jobject instance) { return env->GetDoubleField(instance, this->valueField); } LocalRef<jobject> AnalogOutputDouble64::getstatus(JNIEnv* env, jobject instance) { return LocalRef<jobject>(env, env->GetObjectField(instance, this->statusField)); } } }