theConfig 10.0
Loading...
Searching...
No Matches
LcConfig.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvlcconfig;
11
12import jvmkkernel.*;
13
14// MARK_D ################################################################
15// -----------------------------------------------------------------------
16// documentation order
57// --------------------------------------------------------------------------------
58
61final public class LcConfig {
62
63 private LcConfig() {};
64
65 private static boolean first = false;
66
70
92 static public void SetupTmpl() {
93 if (first) return;
94 first = true;
95 System.loadLibrary("jvlcconfig");
96 }
97
99
100 // PUBLIC
101
102 // BEGIN-LcConfig - created by 'jv_MqS.tcl -i NHI1_HOME/theConfig/c/gen/c_lcconfig.meta' - DO NOT change
103
107
108 // doc-key: LcConfig,LcConfig-Enum,sco
109
111 public native static LcConfigFormatE ConfigFormatE_FromInt (int value);
112
114 public native static LcConfigOptionsEF ConfigOptionsEF_FromInt (int value);
115
117 public native static LcConfigTypeE ConfigTypeE_FromInt (int value);
118
120 public native static LcErrorE ErrorE_FromInt (int value);
121
123 public native static LcErrorTypeE ErrorTypeE_FromInt (int value);
124
125 // doc-key: LcConfig,LcConfig-Enum,sm_
126
128 public native static int ConfigFormatE_ToInt (LcConfigFormatE value);
129
131 public native static String ConfigFormatE_ToString (LcConfigFormatE value);
132
134 public native static int ConfigOptionsEF_ToInt (LcConfigOptionsEF value);
135
137 public native static String ConfigOptionsEF_ToString (LcConfigOptionsEF value);
138
140 public native static int ConfigTypeE_ToInt (LcConfigTypeE value);
141
143 public native static String ConfigTypeE_ToString (LcConfigTypeE value);
144
146 public native static int ErrorE_ToInt (LcErrorE value);
147
149 public native static String ErrorE_ToString (LcErrorE value);
150
152 public native static int ErrorTypeE_ToInt (LcErrorTypeE value);
153
155 public native static String ErrorTypeE_ToString (LcErrorTypeE value);
156
158 // LcConfig_Enum_JV_API
159
163
164 // doc-key: LcConfig,LcConfig-Setup,sm_
165
167 public native static void Cleanup ();
168
170 public static void Setup () {
171 SetupTmpl();
172 }
173
175 // LcConfig_Setup_JV_API
176
177 // END-LcConfig - created by 'jv_MqS.tcl -i NHI1_HOME/theConfig/c/gen/c_lcconfig.meta' - DO NOT change
178
179}
180
Java: enum LcConfigOptionsEF → C-API
Java: enum LcConfigFormatE → C-API
Java: enum LcConfigTypeE → C-API
Java: enum LcErrorE → C-API
Definition LcErrorE.java:16
Java: enum LcErrorTypeE → C-API
static native LcErrorE ErrorE_FromInt(int value)
Java: [static] LcErrorE ErrorE_FromInt(int value) → C-API return the LcErrorE from integer …
static native int ConfigTypeE_ToInt(LcConfigTypeE value)
Java: [static] int ConfigTypeE_ToInt(LcConfigTypeE value) → C-API return the LcConfigTypeE as in...
static native String ErrorE_ToString(LcErrorE value)
Java: [static] String ErrorE_ToString(LcErrorE value) → C-API return the LcErrorE as string …
static native LcConfigTypeE ConfigTypeE_FromInt(int value)
Java: [static] LcConfigTypeE ConfigTypeE_FromInt(int value) → C-API return the LcConfigTypeE fro...
static native int ErrorTypeE_ToInt(LcErrorTypeE value)
Java: [static] int ErrorTypeE_ToInt(LcErrorTypeE value) → C-API return the LcErrorTypeE as integ...
static native String ConfigTypeE_ToString(LcConfigTypeE value)
Java: [static] String ConfigTypeE_ToString(LcConfigTypeE value) → C-API return the LcConfigTypeE...
static native int ConfigFormatE_ToInt(LcConfigFormatE value)
Java: [static] int ConfigFormatE_ToInt(LcConfigFormatE value) → C-API return the LcConfigFormatE...
static native String ErrorTypeE_ToString(LcErrorTypeE value)
Java: [static] String ErrorTypeE_ToString(LcErrorTypeE value) → C-API return the LcErrorTypeE as...
static native int ErrorE_ToInt(LcErrorE value)
Java: [static] int ErrorE_ToInt(LcErrorE value) → C-API return the LcErrorE as integer …
static native LcConfigFormatE ConfigFormatE_FromInt(int value)
Java: [static] LcConfigFormatE ConfigFormatE_FromInt(int value) → C-API return the LcConfigForma...
static native LcConfigOptionsEF ConfigOptionsEF_FromInt(int value)
Java: [static] LcConfigOptionsEF ConfigOptionsEF_FromInt(int value) → C-API return the LcConfigO...
static native LcErrorTypeE ErrorTypeE_FromInt(int value)
Java: [static] LcErrorTypeE ErrorTypeE_FromInt(int value) → C-API return the LcErrorTypeE from i...
static native String ConfigFormatE_ToString(LcConfigFormatE value)
Java: [static] String ConfigFormatE_ToString(LcConfigFormatE value) → C-API return the LcConfigF...
static native int ConfigOptionsEF_ToInt(LcConfigOptionsEF value)
Java: [static] int ConfigOptionsEF_ToInt(LcConfigOptionsEF value) → C-API return the LcConfigOpt...
static native String ConfigOptionsEF_ToString(LcConfigOptionsEF value)
Java: [static] String ConfigOptionsEF_ToString(LcConfigOptionsEF value) → C-API return the LcCon...
static native void Cleanup()
Java: [static] Cleanup() → C-API cleanup jvlcconfig internal memory …
static void Setup()
Java: [static] Setup() → C-API setup jvlcconfig internal memory …
static void SetupTmpl()
Task: initialize the JAVA → jvlcconfig connectivity.
Definition LcConfig.java:92