diff options
author | Sven Gothel <[email protected]> | 2011-02-09 03:52:20 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-02-09 03:52:20 +0100 |
commit | eafc9a55cd9ba31709bc45aebd063ff8c2c7d781 (patch) | |
tree | 42a698a104b2fcdb8b2db663eab67265bbb48445 /make/joal-alc.cfg | |
parent | 9d86a3325899606693ec1d9c42be64dc9f33ac9a (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-alc.cfg')
-rwxr-xr-x | make/joal-alc.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/joal-alc.cfg b/make/joal-alc.cfg index b8013ab..71b5fa6 100755 --- a/make/joal-alc.cfg +++ b/make/joal-alc.cfg @@ -3,7 +3,7 @@ Include joal-common.cfg Style InterfaceAndImpl JavaClass ALC -ImplPackage com.jogamp.openal.impl +ImplPackage jogamp.openal ImplJavaClass ALCAbstractImpl AccessControl ALCAbstractImpl PUBLIC_ABSTRACT Extends ALC ALCConstants @@ -16,7 +16,7 @@ ProcAddressNameExpr LP $UPPERCASE({0}) Import java.io.UnsupportedEncodingException Import java.util.* Import com.jogamp.openal.* -Import com.jogamp.openal.impl.* +Import jogamp.openal.* # Factor out the OpenAL constants into their own interface Ignore ^AL_.+ |