File: krossjava.dox

package info (click to toggle)
kross-interpreters 4%3A22.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,488 kB
  • sloc: cpp: 12,206; java: 560; python: 375; ruby: 323; xml: 53; ansic: 38; makefile: 7
file content (24 lines) | stat: -rw-r--r-- 1,153 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/** @section java The Java interpreter backend
 *
 * The Java interpreter backend implements scripting with Java.
 *
 * The @a Kross::JVMInterpreter class implements @a Kross::Interpreter
 * for the Java interpreter backend and provides with the
 * @a Kross::JVMInterpreter::createScript a factory method to create
 * @a Kross::JVMScript instances. Furthermore it provides various methods
 * to inspect and manipulate the state of the Java Virtual Machine.
 * @a Kross::JVMInterpreter also manages the various @a Kross::JVMExtension
 * instances.
 *
 * The @a Kross::JVMScript class implements @a Kross::Script for the
 * Java backend to provide the functionality to execute Java code
 * within a script-container.
 *
 * The @a Kross::JVMExtension class implements a Java Object to wrap a
 * QObject instance into the world of Java.
 *
 * Within JVMVariant the @a Kross::JavaType helper class is used to cast
 * between QVariant and Java objects while the @a Kross::JVMMetaTypeFactory
 * helper class is used as factory within @a Kross::JavaExtension to translate
 * an argument into a @a Kross::MetaType needed for QGenericArgument's data pointer.
 */