diff options
author | Kenneth Russel <[email protected]> | 2007-06-04 01:41:03 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2007-06-04 01:41:03 +0000 |
commit | 9b7d99bc8fcd8ee2f5d2d36ba75f2aade851b07c (patch) | |
tree | 477208e00c594544e7abbb3ae26699f95c9706a9 /src/java/com/sun/gluegen/CodeGenUtils.java | |
parent | d4771326d15acb54276c393821e033a686f3687d (diff) |
Added GlueGenRuntimePackage to allow people to rename and incorporate
those helper classes into their apps
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@62 a78bb65f-1512-4460-ba86-f6dc96a7bf27
Diffstat (limited to 'src/java/com/sun/gluegen/CodeGenUtils.java')
-rw-r--r-- | src/java/com/sun/gluegen/CodeGenUtils.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/com/sun/gluegen/CodeGenUtils.java b/src/java/com/sun/gluegen/CodeGenUtils.java index 553ef26..ab81bec 100644 --- a/src/java/com/sun/gluegen/CodeGenUtils.java +++ b/src/java/com/sun/gluegen/CodeGenUtils.java @@ -79,6 +79,7 @@ public class CodeGenUtils PrintWriter w, String packageName, String className, + String gluegenRuntimePackage, boolean isClassNotInterface, String[] imports, String[] accessModifiers, @@ -94,7 +95,7 @@ public class CodeGenUtils w.print(imports[i]); w.println(';'); } - w.println("import com.sun.gluegen.runtime.*;"); + w.println("import " + gluegenRuntimePackage + ".*;"); w.println(); |