LcSettingC - various functions to perform misc operations … More...
Functions | |
native LcSettingC | jvlcconfig.LcSettingC.AddIfNotExists (String name, LcConfigTypeE cfgtype) |
Java: → C-API addon - add name with type only if not exists in the setting … | |
native LcSettingC | jvlcconfig.LcSettingC.Parent () |
Java: → C-API This function returns the parent setting of the given setting, or NULL if setting is the root setting … | |
native boolean | jvlcconfig.LcSettingC.Exists (String name) |
Java: → C-API addon - return true if name exists in the setting otherwise false … | |
native int | jvlcconfig.LcSettingC.Index () |
Java: → C-API This function returns the index of the given setting within its parent setting … | |
native int | jvlcconfig.LcSettingC.Length () |
Java: → C-API This function returns the number of settings in a group, or the number of elements in a list or array … | |
void | jvlcconfig.LcSettingC.Log () |
Java: → C-API log the setting … | |
void | jvlcconfig.LcSettingC.Log (MkObjectC fmtobj) |
Java: → C-API log the setting … | |
void | jvlcconfig.LcSettingC.Log (MkObjectC fmtobj, int debug) |
Java: → C-API log the setting … | |
void | jvlcconfig.LcSettingC.Log (MkObjectC fmtobj, int debug, String callfunc) |
Java: → C-API log the setting … | |
native String | jvlcconfig.LcSettingC.Name () |
Java: → C-API This function returns the name of the given setting, or NULL if the setting has no name … | |
native void | jvlcconfig.LcSettingC.Remove (String name) |
Java: → C-API This function removes and destroys the setting named name from the parent setting parent, which must be a group … | |
native void | jvlcconfig.LcSettingC.RemoveElem (int idx) |
Java: → C-API This function removes the child setting at the given index index from the setting parent, which must be a group, list, or array … | |
native String | jvlcconfig.LcSettingC.SourceFile () |
Java: → C-API This function returns the name of the file from which the setting setting was read, or NULL if the setting was not read from a file … | |
native int | jvlcconfig.LcSettingC.SourceLine () |
Java: → C-API This function returns the line number of the configuration file or stream at which the setting setting was read, or 0 if no line number is available … | |
native LcConfigTypeE | jvlcconfig.LcSettingC.Type () |
Java: → C-API This function returns the type of the given setting … | |
JNIEXPORT jobject JNICALL | Java_jvlcconfig_LcSettingC_AddIfNotExists (JNIEnv *env, jobject self, jstring name, jobject cfgtype) |
Java: → C-API addon - add name with type only if not exists in the setting … | |
JNIEXPORT jobject JNICALL | Java_jvlcconfig_LcSettingC_Parent (JNIEnv *env, jobject self) |
Java: → C-API This function returns the parent setting of the given setting, or NULL if setting is the root setting … | |
JNIEXPORT jboolean JNICALL | Java_jvlcconfig_LcSettingC_Exists (JNIEnv *env, jobject self, jstring name) |
Java: → C-API addon - return true if name exists in the setting otherwise false … | |
JNIEXPORT jint JNICALL | Java_jvlcconfig_LcSettingC_Index (JNIEnv *env, jobject self) |
Java: → C-API This function returns the index of the given setting within its parent setting … | |
JNIEXPORT jint JNICALL | Java_jvlcconfig_LcSettingC_Length (JNIEnv *env, jobject self) |
Java: → C-API This function returns the number of settings in a group, or the number of elements in a list or array … | |
JNIEXPORT jstring JNICALL | Java_jvlcconfig_LcSettingC_Name (JNIEnv *env, jobject self) |
Java: → C-API This function returns the name of the given setting, or NULL if the setting has no name … | |
JNIEXPORT void JNICALL | Java_jvlcconfig_LcSettingC_Remove (JNIEnv *env, jobject self, jstring name) |
Java: → C-API This function removes and destroys the setting named name from the parent setting parent, which must be a group … | |
JNIEXPORT void JNICALL | Java_jvlcconfig_LcSettingC_RemoveElem (JNIEnv *env, jobject self, jint idx) |
Java: → C-API This function removes the child setting at the given index index from the setting parent, which must be a group, list, or array … | |
JNIEXPORT jstring JNICALL | Java_jvlcconfig_LcSettingC_SourceFile (JNIEnv *env, jobject self) |
Java: → C-API This function returns the name of the file from which the setting setting was read, or NULL if the setting was not read from a file … | |
JNIEXPORT jint JNICALL | Java_jvlcconfig_LcSettingC_SourceLine (JNIEnv *env, jobject self) |
Java: → C-API This function returns the line number of the configuration file or stream at which the setting setting was read, or 0 if no line number is available … | |
JNIEXPORT jobject JNICALL | Java_jvlcconfig_LcSettingC_Type (JNIEnv *env, jobject self) |
Java: → C-API This function returns the type of the given setting … | |
LcSettingC - various functions to perform misc operations …
native LcSettingC jvlcconfig.LcSettingC.AddIfNotExists | ( | String | name, |
LcConfigTypeE | cfgtype ) |
Java:
→ C-API LcSettingC setting.AddIfNotExists(String name, LcConfigTypeE cfgtype)
addon - add name with type only if not exists in the setting …
native boolean jvlcconfig.LcSettingC.Exists | ( | String | name | ) |
Java:
→ C-API boolean setting.Exists(String name)
addon - return true if name exists in the setting otherwise false …
native int jvlcconfig.LcSettingC.Index | ( | ) |
Java:
→ C-API int setting.Index()
This function returns the index of the given setting within its parent setting …
JNIEXPORT jobject JNICALL Java_jvlcconfig_LcSettingC_AddIfNotExists | ( | JNIEnv * | env, |
jobject | self, | ||
jstring | name, | ||
jobject | cfgtype ) |
Java:
→ C-API LcSettingC setting.AddIfNotExists(String name, LcConfigTypeE cfgtype)
addon - add name with type only if not exists in the setting …
Definition at line 529 of file LcSettingC_jv.c.
JNIEXPORT jboolean JNICALL Java_jvlcconfig_LcSettingC_Exists | ( | JNIEnv * | env, |
jobject | self, | ||
jstring | name ) |
Java:
→ C-API boolean setting.Exists(String name)
addon - return true if name exists in the setting otherwise false …
Definition at line 564 of file LcSettingC_jv.c.
JNIEXPORT jint JNICALL Java_jvlcconfig_LcSettingC_Index | ( | JNIEnv * | env, |
jobject | self ) |
Java:
→ C-API int setting.Index()
This function returns the index of the given setting within its parent setting …
Definition at line 579 of file LcSettingC_jv.c.
JNIEXPORT jint JNICALL Java_jvlcconfig_LcSettingC_Length | ( | JNIEnv * | env, |
jobject | self ) |
Java:
→ C-API int setting.Length()
This function returns the number of settings in a group, or the number of elements in a list or array …
Definition at line 591 of file LcSettingC_jv.c.
JNIEXPORT jstring JNICALL Java_jvlcconfig_LcSettingC_Name | ( | JNIEnv * | env, |
jobject | self ) |
Java:
→ C-API String setting.Name()
This function returns the name of the given setting, or NULL
if the setting has no name …
Definition at line 605 of file LcSettingC_jv.c.
JNIEXPORT jobject JNICALL Java_jvlcconfig_LcSettingC_Parent | ( | JNIEnv * | env, |
jobject | self ) |
Java:
→ C-API LcSettingC setting.Parent()
This function returns the parent setting of the given setting, or NULL
if setting is the root setting …
Definition at line 546 of file LcSettingC_jv.c.
JNIEXPORT void JNICALL Java_jvlcconfig_LcSettingC_Remove | ( | JNIEnv * | env, |
jobject | self, | ||
jstring | name ) |
Java:
→ C-API parent.Remove(String name)
This function removes and destroys the setting named name from the parent setting parent, which must be a group …
Definition at line 617 of file LcSettingC_jv.c.
JNIEXPORT void JNICALL Java_jvlcconfig_LcSettingC_RemoveElem | ( | JNIEnv * | env, |
jobject | self, | ||
jint | idx ) |
Java:
→ C-API parent.RemoveElem(int idx)
This function removes the child setting at the given index index from the setting parent, which must be a group, list, or array …
Definition at line 631 of file LcSettingC_jv.c.
JNIEXPORT jstring JNICALL Java_jvlcconfig_LcSettingC_SourceFile | ( | JNIEnv * | env, |
jobject | self ) |
Java:
→ C-API String setting.SourceFile()
This function returns the name of the file from which the setting setting was read, or NULL if the setting was not read from a file …
Definition at line 642 of file LcSettingC_jv.c.
JNIEXPORT jint JNICALL Java_jvlcconfig_LcSettingC_SourceLine | ( | JNIEnv * | env, |
jobject | self ) |
Java:
→ C-API int setting.SourceLine()
This function returns the line number of the configuration file or stream at which the setting setting was read, or 0 if no line number is available …
Definition at line 654 of file LcSettingC_jv.c.
JNIEXPORT jobject JNICALL Java_jvlcconfig_LcSettingC_Type | ( | JNIEnv * | env, |
jobject | self ) |
Java:
→ C-API LcConfigTypeE setting.Type()
This function returns the type of the given setting …
Definition at line 666 of file LcSettingC_jv.c.
native int jvlcconfig.LcSettingC.Length | ( | ) |
Java:
→ C-API int setting.Length()
This function returns the number of settings in a group, or the number of elements in a list or array …
void jvlcconfig.LcSettingC.Log | ( | ) |
Java:
→ C-API setting.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?)
log the setting …
Definition at line 227 of file LcSettingC.java.
void jvlcconfig.LcSettingC.Log | ( | MkObjectC | fmtobj | ) |
Java:
→ C-API setting.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?)
log the setting …
Definition at line 232 of file LcSettingC.java.
void jvlcconfig.LcSettingC.Log | ( | MkObjectC | fmtobj, |
int | debug ) |
Java:
→ C-API setting.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?)
log the setting …
Definition at line 237 of file LcSettingC.java.
void jvlcconfig.LcSettingC.Log | ( | MkObjectC | fmtobj, |
int | debug, | ||
String | callfunc ) |
Java:
→ C-API setting.Log(?MkObjectC fmtobj = null?, ?int debug = 0?, ?String callfunc = null?, ?int lvl = 0?)
log the setting …
Definition at line 242 of file LcSettingC.java.
native String jvlcconfig.LcSettingC.Name | ( | ) |
Java:
→ C-API String setting.Name()
This function returns the name of the given setting, or NULL
if the setting has no name …
native LcSettingC jvlcconfig.LcSettingC.Parent | ( | ) |
Java:
→ C-API LcSettingC setting.Parent()
This function returns the parent setting of the given setting, or NULL
if setting is the root setting …
native void jvlcconfig.LcSettingC.Remove | ( | String | name | ) |
Java:
→ C-API parent.Remove(String name)
This function removes and destroys the setting named name from the parent setting parent, which must be a group …
native void jvlcconfig.LcSettingC.RemoveElem | ( | int | idx | ) |
Java:
→ C-API parent.RemoveElem(int idx)
This function removes the child setting at the given index index from the setting parent, which must be a group, list, or array …
native String jvlcconfig.LcSettingC.SourceFile | ( | ) |
Java:
→ C-API String setting.SourceFile()
This function returns the name of the file from which the setting setting was read, or NULL if the setting was not read from a file …
native int jvlcconfig.LcSettingC.SourceLine | ( | ) |
Java:
→ C-API int setting.SourceLine()
This function returns the line number of the configuration file or stream at which the setting setting was read, or 0 if no line number is available …
native LcConfigTypeE jvlcconfig.LcSettingC.Type | ( | ) |
Java:
→ C-API LcConfigTypeE setting.Type()
This function returns the type of the given setting …