summaryrefslogtreecommitdiffstats
path: root/make/build.xml
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/build.xml
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/build.xml')
-rwxr-xr-xmake/build.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml
index 8ea1554..bc71e7c 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -390,6 +390,7 @@
<jar manifest="tempversion" destfile="${joal.jar}">
<fileset dir="${classes}">
<include name="com/jogamp/openal/**" />
+ <include name="jogamp/openal/**" />
</fileset>
</jar>
<delete file="tempversion"/>
@@ -449,7 +450,7 @@
<property name="javadoc.joal.dev.path" value="${javadoc.root.path}/joal/javadoc_dev" />
<property name="javadoc.packagenames" value="com.jogamp.openal,com.jogamp.openal.util,com.jogamp.openal.sound3d" />
- <property name="javadoc.dev.packagenames" value="${javadoc.packagenames},com.jogamp.openal.impl" />
+ <property name="javadoc.dev.packagenames" value="${javadoc.packagenames},jogamp.openal" />
<!-- if gluegen-javadoc.path is not set, check in default location,
${gluegen.root}/${rootrel.build}/javadoc/gluegen -->