theKernel 10.0
Loading...
Searching...
No Matches
MkLogFileC.java
Go to the documentation of this file.
1
9/* LABEL-INIT */
10package jvmkkernel;
11
12/* LABEL-START */
13
18public class MkLogFileC extends MkObjectC {
19
20 static {
22 }
23
24 private MkLogFileC (long mng, boolean dummy) {
25 super(mng,dummy);
26 }
27
28/* LABEL-END */
29
30 // INTERNAL
31
32 // PUBLIC
33
34 // BEGIN-MkLogFileC - created by 'jv_MqS.tcl -i NHI1_HOME/theKernel/c/gen/c_mkkernel.meta' - DO NOT change
35
39
40 // doc-key: MkLogFileC,MkLogFileC-Class-Export,sc_
41
43 public native static MkLogFileC HandleResolve (int netHdl);
44
45 // doc-key: MkLogFileC,MkLogFileC-Class-Export,om_
46
47 // skip class-overload: public native int HandleGet ()
48
50 // MkLogFileC_Class_JV_API
51
55
56 // doc-key: MkLogFileC,MkLogFileC-Class-Introspection,oc_
57
59 public native MkLogFileC Next ();
60
62 public native MkLogFileC Prev ();
63
64 // doc-key: MkLogFileC,MkLogFileC-Class-Introspection,sc_
65
67 public native static MkLogFileC Instances ();
68
70 // MkLogFileC_Class_JV_API
71
75
76 // doc-key: MkLogFileC,MkLogFileC-Class-Misc,sc_
77
79 public native static MkLogFileC GetNull ();
80
82 // MkLogFileC_Class_JV_API
83
87
88 // doc-key: MkLogFileC,MkLogFileC-TOR,sCo
89
91 private native static long CTOR (MkObjectC fmtobj, String file);
92
94 public native static MkLogFileC Open (MkObjectC fmtobj, String file);
95
97 public MkLogFileC (MkObjectC fmtobj, String file) {
98 this(CTOR(fmtobj, file), true);
99 }
100
102 // MkLogFileC_TOR_JV_API
103
107
108 // doc-key: MkLogFileC,MkLogFileC-Write,om_
109
111 public native void WriteC (String text);
112
113 // doc-key: MkLogFileC,MkLogFileC-Write,omo
114
116 public native String GetFile ();
117
119 // MkLogFileC_Write_JV_API
120
121 // END-MkLogFileC - created by 'jv_MqS.tcl -i NHI1_HOME/theKernel/c/gen/c_mkkernel.meta' - DO NOT change
122
123}
124
MkKernel PACKAGE - The package is the toplevel structure of the Programming-Language-Micro-Kernel (PL...
MkLogFileC - the class known as lfl or log-file is used to control the target of the logging-output …
MkObjectC - class known as obj or object is used as base-class type for a Programming-Language-Micro-...
static void Setup()
Java: [static] Setup() → C-API setup jvmkkernel internal memory …
static native MkLogFileC HandleResolve(int netHdl)
Java: [static] MkLogFileC MkLogFileC.HandleResolve(int netHdl) → C-API Handle-Resolve-Slot - ret...
static native MkLogFileC GetNull()
Java: [static] MkLogFileC MkLogFileC.GetNull() → C-API Null-Slot - return a MkLogFileC typed NUL...
static native MkLogFileC Instances()
Java: [static] MkLogFileC MkLogFileC.Instances() → C-API get head-instance from linked-list of M...
native MkLogFileC Next()
Java: MkLogFileC lfl.Next() → C-API get next instance from linked-list of MkLogFileS type
native MkLogFileC Prev()
Java: MkLogFileC lfl.Prev() → C-API get previous instance from linked-list of MkLogFileS type
MkLogFileC(MkObjectC fmtobj, String file)
Java: [constructor,static] MkLogFileC MkLogFileC.Open(?MkObjectC fmtobj = null?, String file) → C-AP...
static native MkLogFileC Open(MkObjectC fmtobj, String file)
Java: [constructor,static] MkLogFileC MkLogFileC.Open(?MkObjectC fmtobj = null?, String file) → C-AP...
native String GetFile()
Java: String lfl.GetFile() → C-API get the log-file …
native void WriteC(String text)
Java: lfl.WriteC(String text) → C-API write to log-file …