aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2009-03-20 17:31:19 +0000
committerSven Gothel <[email protected]>2009-03-20 17:31:19 +0000
commitf5df275b63634869b93f84a0ff7286f74a2e547c (patch)
tree9763717adf2677d4d47fc1c1f208f9ca7cbd9d1f
parent7fd960d6c849efa6ccee10360b7e37b73e74e992 (diff)
Putback AWTAnimatorImpl to util, hence *AnimatorImpl are protected again
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1894 232f8b59-042b-4e1e-8c03-345bb8c30851
-rw-r--r--src/jogl/classes/com/sun/opengl/util/AWTAnimatorImpl.java (renamed from src/jogl/classes/com/sun/opengl/util/awt/AWTAnimatorImpl.java)5
-rw-r--r--src/jogl/classes/com/sun/opengl/util/AnimatorImpl.java2
2 files changed, 3 insertions, 4 deletions
diff --git a/src/jogl/classes/com/sun/opengl/util/awt/AWTAnimatorImpl.java b/src/jogl/classes/com/sun/opengl/util/AWTAnimatorImpl.java
index 611be247a..9809e44d2 100644
--- a/src/jogl/classes/com/sun/opengl/util/awt/AWTAnimatorImpl.java
+++ b/src/jogl/classes/com/sun/opengl/util/AWTAnimatorImpl.java
@@ -30,7 +30,7 @@
* SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
*/
-package com.sun.opengl.util.awt;
+package com.sun.opengl.util;
import java.awt.Component;
import java.awt.EventQueue;
@@ -39,13 +39,12 @@ import java.util.*;
import javax.swing.*;
import javax.media.opengl.*;
-import com.sun.opengl.util.*;
/** Abstraction to factor out AWT dependencies from the Animator's
implementation in a way that still allows the FPSAnimator to pick
up this behavior if desired. */
-public class AWTAnimatorImpl extends AnimatorImpl {
+class AWTAnimatorImpl extends AnimatorImpl {
// For efficient rendering of Swing components, in particular when
// they overlap one another
private List lightweights = new ArrayList();
diff --git a/src/jogl/classes/com/sun/opengl/util/AnimatorImpl.java b/src/jogl/classes/com/sun/opengl/util/AnimatorImpl.java
index 5651ee50a..8bba4b71a 100644
--- a/src/jogl/classes/com/sun/opengl/util/AnimatorImpl.java
+++ b/src/jogl/classes/com/sun/opengl/util/AnimatorImpl.java
@@ -39,7 +39,7 @@ import javax.media.opengl.*;
implementation in a way that still allows the FPSAnimator to pick
up this behavior if desired. */
-public class AnimatorImpl {
+class AnimatorImpl {
public void display(Animator animator,
boolean ignoreExceptions,
boolean printExceptions) {