theConfig 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard - theLib
c - tcl - atl - cs - py - rb - jv - cc
Loading...
Searching...
No Matches
LcConfigC_Class_JV_API

LcConfigC - define the class … More...

+ Collaboration diagram for LcConfigC_Class_JV_API:

Functions

static native LcConfigC jvlcconfig.LcConfigC.HandleResolve (int netHdl)
  Java: [static] LcConfigC LcConfigC.HandleResolve(int netHdl) C-API
Handle-Resolve-Slot - return a LcConfigC from netHdl or null if invalid…
 
native LcConfigC jvlcconfig.LcConfigC.Next ()
  Java: LcConfigC cfg.Next() C-API
get next instance from linked-list of LcConfigS type
 
native LcConfigC jvlcconfig.LcConfigC.Prev ()
  Java: LcConfigC cfg.Prev() C-API
get previous instance from linked-list of LcConfigS type
 
static native LcConfigC jvlcconfig.LcConfigC.Instances ()
  Java: [static] LcConfigC LcConfigC.Instances() C-API
get head-instance from linked-list of LcConfigS type …
 
static native LcConfigC jvlcconfig.LcConfigC.GetNull ()
  Java: [static] LcConfigC LcConfigC.GetNull() C-API
Null-Slot - return a LcConfigC typed NULL instance …
 
JNIEXPORT jobject JNICALL Java_jvlcconfig_LcConfigC_HandleResolve (JNIEnv *env, jclass class, jint netHdl)
  Java: [static] LcConfigC LcConfigC.HandleResolve(int netHdl) C-API
Handle-Resolve-Slot - return a LcConfigC from netHdl or null if invalid…
 
JNIEXPORT jobject JNICALL Java_jvlcconfig_LcConfigC_Next (JNIEnv *env, jobject self)
  Java: LcConfigC cfg.Next() C-API
get next instance from linked-list of LcConfigS type
 
JNIEXPORT jobject JNICALL Java_jvlcconfig_LcConfigC_Prev (JNIEnv *env, jobject self)
  Java: LcConfigC cfg.Prev() C-API
get previous instance from linked-list of LcConfigS type
 
JNIEXPORT jobject JNICALL Java_jvlcconfig_LcConfigC_Instances (JNIEnv *env, jclass class)
  Java: [static] LcConfigC LcConfigC.Instances() C-API
get head-instance from linked-list of LcConfigS type …
 
JNIEXPORT jobject JNICALL Java_jvlcconfig_LcConfigC_GetNull (JNIEnv *env, jclass class)
  Java: [static] LcConfigC LcConfigC.GetNull() C-API
Null-Slot - return a LcConfigC typed NULL instance …
 

Detailed Description

LcConfigC - define the class …

Function Documentation

◆ GetNull()

static native LcConfigC jvlcconfig.LcConfigC.GetNull ( )
static

Java: [static] LcConfigC LcConfigC.GetNull() C-API
Null-Slot - return a LcConfigC typed NULL instance …

◆ HandleResolve()

static native LcConfigC jvlcconfig.LcConfigC.HandleResolve ( int netHdl)
static

Java: [static] LcConfigC LcConfigC.HandleResolve(int netHdl) C-API
Handle-Resolve-Slot - return a LcConfigC from netHdl or null if invalid…

◆ Instances()

static native LcConfigC jvlcconfig.LcConfigC.Instances ( )
static

Java: [static] LcConfigC LcConfigC.Instances() C-API
get head-instance from linked-list of LcConfigS type …

◆ Java_jvlcconfig_LcConfigC_GetNull()

JNIEXPORT jobject JNICALL Java_jvlcconfig_LcConfigC_GetNull ( JNIEnv * env,
jclass class )

Java: [static] LcConfigC LcConfigC.GetNull() C-API
Null-Slot - return a LcConfigC typed NULL instance …

Definition at line 113 of file LcConfigC_jv.c.

113 {
115 LC_CFG __retVal__L = LcConfigGetNull();
116 jobject __retVal__S = LC(LcConfigC_ObjNew)(MK_RT_CALL env,__retVal__L);
117 return __retVal__S;
118}
static MK_ARTIFICIAL LC_CFG LcConfigC_ObjNew(config_t *hdl)
return Programming-Language-Micro-Kernel (PLMK) instance from native hdl …
static LC_CFG LcConfigGetNull(void)
Null-Slot - return a LcConfigC typed NULL instance …
#define MK_RT_CALL
#define MkRtSetup_NULL
Struct to represent the data from the LcConfigC …

◆ Java_jvlcconfig_LcConfigC_HandleResolve()

JNIEXPORT jobject JNICALL Java_jvlcconfig_LcConfigC_HandleResolve ( JNIEnv * env,
jclass class,
jint netHdl )

Java: [static] LcConfigC LcConfigC.HandleResolve(int netHdl) C-API
Handle-Resolve-Slot - return a LcConfigC from netHdl or null if invalid…

Definition at line 49 of file LcConfigC_jv.c.

49 {
51 LC_CFG __retVal__L = LcConfigHandleResolve(netHdl);
52 jobject __retVal__S = LC(LcConfigC_ObjNew)(MK_RT_CALL env,__retVal__L);
53 return __retVal__S;
54}
#define LcConfigHandleResolve(...)

◆ Java_jvlcconfig_LcConfigC_Instances()

JNIEXPORT jobject JNICALL Java_jvlcconfig_LcConfigC_Instances ( JNIEnv * env,
jclass class )

Java: [static] LcConfigC LcConfigC.Instances() C-API
get head-instance from linked-list of LcConfigS type …

Definition at line 96 of file LcConfigC_jv.c.

96 {
98 LC_CFG __retVal__L = LcConfigInstances();
99 jobject __retVal__S = LC(LcConfigC_ObjNew)(MK_RT_CALL env,__retVal__L);
100 return __retVal__S;
101}
#define LcConfigInstances()

◆ Java_jvlcconfig_LcConfigC_Next()

JNIEXPORT jobject JNICALL Java_jvlcconfig_LcConfigC_Next ( JNIEnv * env,
jobject self )

Java: LcConfigC cfg.Next() C-API
get next instance from linked-list of LcConfigS type

Definition at line 70 of file LcConfigC_jv.c.

70 {
71 LC_CFG hdl = (LC_CFG)pObj2Hdl(env,"LcConfigC",self);
72 JavaErrorCheck;
73 MkRtSetup_X(hdl);
74 LC_CFG __retVal__L = LcConfigNext(hdl);
75 jobject __retVal__S = LC(LcConfigC_ObjNew)(MK_RT_CALL env,__retVal__L);
76 return __retVal__S;
77error:
78 return 0;
79}
struct LcConfigS * LC_CFG
class-shortcut for struct LcConfigS *, all shortcut using the XX_YYY syntax (only for public API) …
static LC_CFG LcConfigNext(LC_CFG const cfg)
get next instance from linked-list of LcConfigS type
#define MkRtSetup_X(x)

◆ Java_jvlcconfig_LcConfigC_Prev()

JNIEXPORT jobject JNICALL Java_jvlcconfig_LcConfigC_Prev ( JNIEnv * env,
jobject self )

Java: LcConfigC cfg.Prev() C-API
get previous instance from linked-list of LcConfigS type

Definition at line 82 of file LcConfigC_jv.c.

82 {
83 LC_CFG hdl = (LC_CFG)pObj2Hdl(env,"LcConfigC",self);
84 JavaErrorCheck;
85 MkRtSetup_X(hdl);
86 LC_CFG __retVal__L = LcConfigPrev(hdl);
87 jobject __retVal__S = LC(LcConfigC_ObjNew)(MK_RT_CALL env,__retVal__L);
88 return __retVal__S;
89error:
90 return 0;
91}
static LC_CFG LcConfigPrev(LC_CFG const cfg)
get previous instance from linked-list of LcConfigS type

◆ Next()

native LcConfigC jvlcconfig.LcConfigC.Next ( )

Java: LcConfigC cfg.Next() C-API
get next instance from linked-list of LcConfigS type

◆ Prev()

native LcConfigC jvlcconfig.LcConfigC.Prev ( )

Java: LcConfigC cfg.Prev() C-API
get previous instance from linked-list of LcConfigS type