aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/GlueGen_Mapping.html14
-rw-r--r--doc/GlueGen_Mapping.md14
2 files changed, 14 insertions, 14 deletions
diff --git a/doc/GlueGen_Mapping.html b/doc/GlueGen_Mapping.html
index 02ec43f..1f053b3 100644
--- a/doc/GlueGen_Mapping.html
+++ b/doc/GlueGen_Mapping.html
@@ -499,21 +499,21 @@ uses a complete ANSI C parser and an internal representation (IR)
capable of representing all C types to represent the APIs for which it
generates interfaces. It has the ability to perform significant
transformations on the IR before glue code emission.</p>
-<p>GlueGen can produce native foreign function bindings to Java as well
+<p>GlueGen can produce native foreign function bindings to Java™ as well
as <a href="#struct-mapping">map native data structures</a> to be fully
-accessible from Java including potential calls to <a
+accessible from Java™ including potential calls to <a
href="#struct-function-pointer-support">embedded function
pointer</a>.</p>
<p>GlueGen supports <a
-href="#java-callback-from-native-c-api-support">registering Java
+href="#java-callback-from-native-c-api-support">registering Java™
callback methods</a> to receive asynchronous and off-thread native
toolkit events, where a generated native callback function dispatches
-the events to Java.</p>
+the events to Java™.</p>
<p>GlueGen also supports <a
href="#oo-style-api-interface-mapping">producing an OO-Style API
mapping</a> like <a href="../../jogl/doc/uml/html/index.html">JOGL's
incremental OpenGL Profile API levels</a>.</p>
-<p>GlueGen is capable to bind low-level APIs such as the Java Native
+<p>GlueGen is capable to bind low-level APIs such as the Java™ Native
Interface (JNI) and the AWT Native Interface (JAWT) back up to the Java
programming language.</p>
<p>Further, GlueGen supports generating <code>JNI_OnLoad(..)</code> for
@@ -522,11 +522,11 @@ static libraries via <a
href="#libraryonload-librarybasename-for-jni_onload-"><code>LibraryOnLoad Bindingtest2</code></a>,
which also provides <code>JVMUtil_GetJNIEnv(..)</code> to resolve the
<code>JNIEnv*</code> as used by <a
-href="#java-callback-from-native-c-api-support">Java callback
+href="#java-callback-from-native-c-api-support">Java™ callback
methods</a>.</p>
<p>GlueGen utilizes <a
href="https://jogamp.org/cgit/jcpp.git/about/">JCPP</a>, migrated C
-preprocessor written in Java.</p>
+preprocessor written in Java™.</p>
<p>GlueGen is used for the <a href="https://jogamp.org">JogAmp</a>
projects <a href="https://jogamp.org/cgit/joal.git/about/">JOAL</a>, <a
href="https://jogamp.org/cgit/jogl.git/about/">JOGL</a> and <a
diff --git a/doc/GlueGen_Mapping.md b/doc/GlueGen_Mapping.md
index 738c529..8232416 100644
--- a/doc/GlueGen_Mapping.md
+++ b/doc/GlueGen_Mapping.md
@@ -27,22 +27,22 @@ C types to represent the APIs for which it generates interfaces. It
has the ability to perform significant transformations on the IR
before glue code emission.
-GlueGen can produce native foreign function bindings to Java as well as
-[map native data structures](#struct-mapping) to be fully accessible from Java including
+GlueGen can produce native foreign function bindings to Java™ as well as
+[map native data structures](#struct-mapping) to be fully accessible from Java™ including
potential calls to [embedded function pointer](#struct-function-pointer-support).
-GlueGen supports [registering Java callback methods](#java-callback-from-native-c-api-support)
+GlueGen supports [registering Java™ callback methods](#java-callback-from-native-c-api-support)
to receive asynchronous and off-thread native toolkit events,
-where a generated native callback function dispatches the events to Java.
+where a generated native callback function dispatches the events to Java™.
GlueGen also supports [producing an OO-Style API mapping](#oo-style-api-interface-mapping) like [JOGL's incremental OpenGL Profile API levels](../../jogl/doc/uml/html/index.html).
-GlueGen is capable to bind low-level APIs such as the Java Native Interface (JNI) and
+GlueGen is capable to bind low-level APIs such as the Java™ Native Interface (JNI) and
the AWT Native Interface (JAWT) back up to the Java programming language.
-Further, GlueGen supports generating `JNI_OnLoad(..)` for dynamic and `JNI_OnLoad_<LibraryBasename>(..)` for static libraries via [`LibraryOnLoad Bindingtest2`](#libraryonload-librarybasename-for-jni_onload-), which also provides `JVMUtil_GetJNIEnv(..)` to resolve the `JNIEnv*` as used by [Java callback methods](#java-callback-from-native-c-api-support).
+Further, GlueGen supports generating `JNI_OnLoad(..)` for dynamic and `JNI_OnLoad_<LibraryBasename>(..)` for static libraries via [`LibraryOnLoad Bindingtest2`](#libraryonload-librarybasename-for-jni_onload-), which also provides `JVMUtil_GetJNIEnv(..)` to resolve the `JNIEnv*` as used by [Java™ callback methods](#java-callback-from-native-c-api-support).
-GlueGen utilizes [JCPP](https://jogamp.org/cgit/jcpp.git/about/), migrated C preprocessor written in Java.
+GlueGen utilizes [JCPP](https://jogamp.org/cgit/jcpp.git/about/), migrated C preprocessor written in Java™.
GlueGen is used for the [JogAmp](https://jogamp.org) projects
[JOAL](https://jogamp.org/cgit/joal.git/about/),