I'm trying to generate the documentation for a new library that will
be part of a SDK add-on. I'd like to remove some classes from the
javadoc (such as generated classes based on aidl).
I thought that setting the LOCAL_SRC_FILES variable (before including
BUILD_DROIDDOC) to only the classes I'd like to include in the javadoc
would do the trick, but all classes are being included (even generated
IPC classes).
Here is how I'm writing the makefile:
include $(CLEAR_VARS)
LOCAL_SRC_FILES := com/xxx/yyy/ClassA.java \
com/xxx/yyy/ClassB.java
LOCAL_MODULE:= my_module_name
LOCAL_DROIDDOC_OPTIONS := my_module_name
LOCAL_MODULE_CLASS := JAVA_LIBRARIES
LOCAL_DROIDDOC_USE_STANDARD_DOCLET := true
include $(BUILD_DROIDDOC)
All classes in the com.xxx.yyy package are being included in the
Javadoc, not only ClassA and ClassB.
Can anyone help ?
Regards,
Wesley
--
unsubscribe: [email protected]
website: http://groups.google.com/group/android-porting
To unsubscribe, reply using "remove me" as the subject.