theConfig 10.0
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 110 of file LcConfigC_jv.c.

110 {
112 LC_CFG __retVal__L = LcConfigGetNull();
113 jobject __retVal__S = LC(LcConfigC_ObjNew)(MK_RT_CALL env,__retVal__L);
114 return __retVal__S;
115}
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 46 of file LcConfigC_jv.c.

46 {
48 LC_CFG __retVal__L = LcConfigHandleResolve(netHdl);
49 jobject __retVal__S = LC(LcConfigC_ObjNew)(MK_RT_CALL env,__retVal__L);
50 return __retVal__S;
51}
#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 93 of file LcConfigC_jv.c.

93 {
95 LC_CFG __retVal__L = LcConfigInstances();
96 jobject __retVal__S = LC(LcConfigC_ObjNew)(MK_RT_CALL env,__retVal__L);
97 return __retVal__S;
98}
#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 67 of file LcConfigC_jv.c.

67 {
68 LC_CFG hdl = (LC_CFG)pObj2Hdl(env,"LcConfigC",self);
69 JavaErrorCheck;
70 MkRtSetup_X(hdl);
71 LC_CFG __retVal__L = LcConfigNext(hdl);
72 jobject __retVal__S = LC(LcConfigC_ObjNew)(MK_RT_CALL env,__retVal__L);
73 return __retVal__S;
74error:
75 return 0;
76}
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 79 of file LcConfigC_jv.c.

79 {
80 LC_CFG hdl = (LC_CFG)pObj2Hdl(env,"LcConfigC",self);
81 JavaErrorCheck;
82 MkRtSetup_X(hdl);
83 LC_CFG __retVal__L = LcConfigPrev(hdl);
84 jobject __retVal__S = LC(LcConfigC_ObjNew)(MK_RT_CALL env,__retVal__L);
85 return __retVal__S;
86error:
87 return 0;
88}
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