diff options
author | Michael Bien <[email protected]> | 2010-03-29 18:35:57 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-29 18:35:57 +0200 |
commit | 4050d93e4747b5418379319e7216af6113ea23e5 (patch) | |
tree | db71cc08193e1f893a2f2f296930eb11f6d8897c /test/src | |
parent | 869f7899143296f70fbedb7ead9750aa2e4da172 (diff) |
renamed package to com.jogamp.openal.*
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/com/jogamp/openal/ALTest.java (renamed from test/src/net/java/games/joal/ALTest.java) | 5 | ||||
-rw-r--r-- | test/src/com/jogamp/openal/OpenALTest.java (renamed from test/src/OpenALTest.java) | 8 | ||||
-rw-r--r-- | test/src/com/jogamp/openal/Sound3DTest.java (renamed from test/src/Sound3DTest.java) | 5 |
3 files changed, 10 insertions, 8 deletions
diff --git a/test/src/net/java/games/joal/ALTest.java b/test/src/com/jogamp/openal/ALTest.java index 7b25aa1..45b7995 100644 --- a/test/src/net/java/games/joal/ALTest.java +++ b/test/src/com/jogamp/openal/ALTest.java @@ -4,15 +4,14 @@ * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ -package net.java.games.joal; +package com.jogamp.openal; import java.io.IOException; -import java.nio.ByteBuffer; import javax.sound.sampled.UnsupportedAudioFileException; import junit.framework.TestCase; -import net.java.games.joal.util.*; +import com.jogamp.openal.util.*; /** * @author Athomas Goldberg diff --git a/test/src/OpenALTest.java b/test/src/com/jogamp/openal/OpenALTest.java index fb63a2f..7826899 100644 --- a/test/src/OpenALTest.java +++ b/test/src/com/jogamp/openal/OpenALTest.java @@ -1,3 +1,5 @@ +package com.jogamp.openal; + /** * Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved. * @@ -33,9 +35,9 @@ import java.nio.*; -import net.java.games.joal.*; -import net.java.games.joal.eax.*; -import net.java.games.joal.util.*; +import com.jogamp.openal.*; +import com.jogamp.openal.eax.*; +import com.jogamp.openal.util.*; /** * @author Athomas Goldberg diff --git a/test/src/Sound3DTest.java b/test/src/com/jogamp/openal/Sound3DTest.java index f6a65a3..2cd2c11 100644 --- a/test/src/Sound3DTest.java +++ b/test/src/com/jogamp/openal/Sound3DTest.java @@ -1,3 +1,5 @@ +package com.jogamp.openal; + /** * Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved. * @@ -32,8 +34,7 @@ */ import java.io.*; import javax.sound.sampled.*; -import net.java.games.joal.*; -import net.java.games.sound3d.*; +import com.jogamp.openal.sound3d.*; /** * @author Athomas Goldberg |