aboutsummaryrefslogtreecommitdiffstats
path: root/make/joal.cfg
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-02-09 03:52:20 +0100
committerSven Gothel <[email protected]>2011-02-09 03:52:20 +0100
commiteafc9a55cd9ba31709bc45aebd063ff8c2c7d781 (patch)
tree42a698a104b2fcdb8b2db663eab67265bbb48445 /make/joal.cfg
parent9d86a3325899606693ec1d9c42be64dc9f33ac9a (diff)
Move implementation private files from com.jogamp.<module>.impl. to jogamp.<module> (2/2) - edit files
- jogamp.openal -> jogamp.openal This sorts implementation details from the top level, ie skipping the public 'com', allowing a better seperation of public classes and implementation details and also reduces strings. This approach of public/private seperation is also used in the OpenJDK.
Diffstat (limited to 'make/joal.cfg')
-rwxr-xr-xmake/joal.cfg6
1 files changed, 4 insertions, 2 deletions
diff --git a/make/joal.cfg b/make/joal.cfg
index e398112..5ce03f8 100755
--- a/make/joal.cfg
+++ b/make/joal.cfg
@@ -3,7 +3,7 @@ Include joal-common.cfg
Style InterfaceAndImpl
JavaClass AL
-ImplPackage com.jogamp.openal.impl
+ImplPackage jogamp.openal
ImplJavaClass ALImpl
Extends AL ALConstants
@@ -14,7 +14,9 @@ ProcAddressNameExpr LP $UPPERCASE({0})
Import com.jogamp.openal.*
-Import com.jogamp.openal.impl.*
+Import jogamp.openal.*
+Import java.security.AccessController
+Import java.security.PrivilegedAction
# Factor out the OpenAL constants into their own interface
Ignore ^AL_.+