diff options
author | Xerxes Rånby <[email protected]> | 2015-11-26 12:19:07 +0100 |
---|---|---|
committer | Xerxes Rånby <[email protected]> | 2015-11-26 12:19:07 +0100 |
commit | d04ee580f3dbc4f9c6c7cd4ba2ab7cec5b38a452 (patch) | |
tree | 6a3e73ba1ddffb12fea1680e50a20dacbbd5c3da /doc/manual/index.html | |
parent | acd52a1936090eee11b3220f5c75ee37763773c7 (diff) |
Bug 682: Rename com.sun.gluegen -> com.jogamp.gluegen in doc/**
Diffstat (limited to 'doc/manual/index.html')
-rwxr-xr-x | doc/manual/index.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/manual/index.html b/doc/manual/index.html index d89f626..15f1482 100755 --- a/doc/manual/index.html +++ b/doc/manual/index.html @@ -363,7 +363,7 @@ <dl> - <dt> <strong>CharScanner; panic: ClassNotFoundException: com.sun.gluegen.cgram.CToken</strong></dt> + <dt> <strong>CharScanner; panic: ClassNotFoundException: com.jogamp.gluegen.cgram.CToken</strong></dt> <dd> This occurs because ANTLR was dropped into the Extensions directory of the JRE/JDK. On Windows and Linux, delete any ANTLR jars from jre/lib/ext, and on Mac OS X, delete them from @@ -397,9 +397,9 @@ <em>emitterClassName</em> as the fully-qualified name of the emitter class which will be used by GlueGen to generate the glue code. The emitter class must implement the - <code>com.sun.gluegen.GlueEmitter</code> interface. If this + <code>com.jogamp.gluegen.GlueEmitter</code> interface. If this option is not specified, a - <code>com.sun.gluegen.JavaEmitter</code> will be used by default. + <code>com.jogamp.gluegen.JavaEmitter</code> will be used by default. </li> <li> -C<em>cfgFile</em> adds <em>cfgFile</em> to the list of configuration files used to set up the chosen emitter. This is @@ -435,7 +435,7 @@ <pre> <taskdef name="gluegen" - classname="com.sun.gluegen.ant.GlueGenTask" + classname="com.jogamp.gluegen.ant.GlueGenTask" classpathref="gluegen.classpath" /> </pre> @@ -445,7 +445,7 @@ <gluegen src="[header to parse]" config="[configuration file]" includeRefid="[dirset for include path]" - emitter="com.sun.gluegen.JavaEmitter"> + emitter="com.jogamp.gluegen.JavaEmitter"> <classpath refid="gluegen.classpath" /> </gluegen> </pre> @@ -1679,8 +1679,8 @@ </p> <pre> - java -cp gluegen.jar:antlr.jar com.sun.gluegen.GlueGen \ - -I. -Ecom.sun.gluegen.JavaEmitter -Cfunction.cfg function.h + java -cp gluegen.jar:antlr.jar com.jogamp.gluegen.GlueGen \ + -I. -Ecom.jogamp.gluegen.JavaEmitter -Cfunction.cfg function.h </pre> <p> The resulting Java and native code needs to be compiled, and the |